]> Git Repo - linux.git/commitdiff
fpga: zynqmp: fix modular build
authorArnd Bergmann <[email protected]>
Tue, 5 May 2020 14:00:11 +0000 (16:00 +0200)
committerMoritz Fischer <[email protected]>
Tue, 9 Jun 2020 15:27:01 +0000 (08:27 -0700)
Two symbols need to be exported to allow the zynqmp-fpga module
to get loaded dynamically:

ERROR: modpost: "zynqmp_pm_fpga_load" [drivers/fpga/zynqmp-fpga.ko] undefined!
ERROR: modpost: "zynqmp_pm_fpga_get_status" [drivers/fpga/zynqmp-fpga.ko] undefined!

To ensure this is done correctly, also fix the Kconfig dependency
to only allow building the fpga driver when the firmware driver is
either disabled, or when it is reachable. With that, the dependency
on the SoC itself can be removed, and there are no surprises when
the fpga driver is built-in but the firmware a module.

Fixes: 4db8180ffe7c ("firmware: xilinx: Remove eemi ops for fpga related APIs")
Signed-off-by: Arnd Bergmann <[email protected]>
Signed-off-by: Moritz Fischer <[email protected]>
drivers/fpga/Kconfig

index 72380e1d31c7fa1d5052fc9b20775c4cec2cf608..37d2d49f179b28e1286ecac1c0440bae3aeececc 100644 (file)
@@ -208,7 +208,7 @@ config FPGA_DFL_PCI
 
 config FPGA_MGR_ZYNQMP_FPGA
        tristate "Xilinx ZynqMP FPGA"
-       depends on ARCH_ZYNQMP || COMPILE_TEST
+       depends on ZYNQMP_FIRMWARE || (!ZYNQMP_FIRMWARE && COMPILE_TEST)
        help
          FPGA manager driver support for Xilinx ZynqMP FPGAs.
          This driver uses the processor configuration port(PCAP)
This page took 0.058159 seconds and 4 git commands to generate.