[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20190502141941.12927-1-mpe@ellerman.id.au>
Date: Fri, 3 May 2019 00:19:41 +1000
From: Michael Ellerman <mpe@...erman.id.au>
To: linux-edac@...r.kernel.org
Cc: morbidrsa@...il.com, bp@...en8.de, mchehab@...nel.org,
james.morse@....com, linux-kernel@...r.kernel.org,
linuxppc-dev@...abs.org
Subject: [PATCH] EDAC, mpc85xx: Prevent building as a module
The mpc85xx EDAC code can be configured as a module but then fails to
build because it uses two unexported symbols:
ERROR: ".pci_find_hose_for_OF_device" [drivers/edac/mpc85xx_edac_mod.ko] undefined!
ERROR: ".early_find_capability" [drivers/edac/mpc85xx_edac_mod.ko] undefined!
We don't want to export those symbols just for this driver, so make
the driver only configurable as a built-in.
This seems to have been broken since at least commit c92132f59806
("edac/85xx: Add PCIe error interrupt edac support") (Nov 2013).
Signed-off-by: Michael Ellerman <mpe@...erman.id.au>
---
drivers/edac/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig
index 47eb4d13ed5f..6317519f9d88 100644
--- a/drivers/edac/Kconfig
+++ b/drivers/edac/Kconfig
@@ -263,7 +263,7 @@ config EDAC_PND2
micro-server but may appear on others in the future.
config EDAC_MPC85XX
- tristate "Freescale MPC83xx / MPC85xx"
+ bool "Freescale MPC83xx / MPC85xx"
depends on FSL_SOC
help
Support for error detection and correction on the Freescale
--
2.20.1
Powered by blists - more mailing lists