diff options
author | Shawn Guo <shawnguo@kernel.org> | 2016-06-21 10:30:44 +0800 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2016-06-21 10:34:41 +0800 |
commit | 2cb9caa43974050c48136c51ece9edc1b0107152 (patch) | |
tree | b8692d8c9242e84969b08b604f369e6c5bfb358f | |
parent | ba4d86a64d9e7b904ef6ba181200712f33978a97 (diff) |
ARM: imx6q: export cpuidle functions needed by fec driver
Export cpuidle functions needed by fec driver to fix the issue below
seen with fec module build.
ERROR: "imx6q_cpuidle_fec_irqs_unused" [drivers/net/ethernet/freescale/fec.ko] undefined!
ERROR: "imx6q_cpuidle_fec_irqs_used" [drivers/net/ethernet/freescale/fec.ko] undefined!
Reported-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
-rw-r--r-- | arch/arm/mach-imx/cpuidle-imx6q.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/cpuidle-imx6q.c b/arch/arm/mach-imx/cpuidle-imx6q.c index c3cc8ca8d2ff..eed176e6d65e 100644 --- a/arch/arm/mach-imx/cpuidle-imx6q.c +++ b/arch/arm/mach-imx/cpuidle-imx6q.c @@ -72,11 +72,13 @@ void imx6q_cpuidle_fec_irqs_used(void) { imx6q_cpuidle_driver.states[1].disabled = true; } +EXPORT_SYMBOL_GPL(imx6q_cpuidle_fec_irqs_used); void imx6q_cpuidle_fec_irqs_unused(void) { imx6q_cpuidle_driver.states[1].disabled = false; } +EXPORT_SYMBOL_GPL(imx6q_cpuidle_fec_irqs_unused); int __init imx6q_cpuidle_init(void) { |