From 5ddb66967924e38c680e6a304585c0f553681a3a Mon Sep 17 00:00:00 2001 From: Arnd Bergmann Date: Wed, 11 Feb 2026 08:07:40 +0100 Subject: [PATCH] PCI: endpoint: pci-epf-test: Select configfs Like some of the other endpoint modules, pci-epf-test now also uses configfs, but is missing an indication in Kconfig: arm-linux-gnueabi-ld: drivers/pci/endpoint/functions/pci-epf-test.o: in function `pci_epf_test_add_cfs': pci-epf-test.c:(.text.pci_epf_test_add_cfs+0x2c): undefined reference to `config_group_init_type_name' Select the symbol as needed. Fixes: ffcc4850a161 ("PCI: endpoint: pci-epf-test: Allow overriding default BAR sizes") Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202602180706.VtXkmtqL-lkp@intel.com/ Signed-off-by: Arnd Bergmann Signed-off-by: Bjorn Helgaas Reviewed-by: Niklas Cassel Reviewed-by: Damien Le Moal Link: https://patch.msgid.link/20260211070812.4087119-1-arnd@kernel.org --- drivers/pci/endpoint/functions/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pci/endpoint/functions/Kconfig b/drivers/pci/endpoint/functions/Kconfig index 0c9cea0698d7..bb5a23994288 100644 --- a/drivers/pci/endpoint/functions/Kconfig +++ b/drivers/pci/endpoint/functions/Kconfig @@ -6,6 +6,7 @@ config PCI_EPF_TEST tristate "PCI Endpoint Test driver" depends on PCI_ENDPOINT + select CONFIGFS_FS select CRC32 help Enable this configuration option to enable the test driver -- 2.47.3