aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/fsl-mc/include
diff options
context:
space:
mode:
authorLijun Pan <Lijun.Pan@freescale.com>2015-10-25 17:41:19 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-10-27 14:40:14 +0900
commit3c7b67f9065d0b83e8501318003551e63c6b48b4 (patch)
tree2c6a358137aa877762bdb99d46115d914f0d2d14 /drivers/staging/fsl-mc/include
parentStaging: lustre: Replace LPROCFS_CLIMP_CHECK with lprocfs_climp_check (diff)
downloadlinux-dev-3c7b67f9065d0b83e8501318003551e63c6b48b4.tar.xz
linux-dev-3c7b67f9065d0b83e8501318003551e63c6b48b4.zip
staging: fsl-mc: section mismatch bug fix
WARNING: drivers/staging/built-in.o(.init.text+0xdc): Section mismatch in reference from the function fsl_mc_bus_driver_init() to the function .exit.text:dprc_driver_exit() The function __init fsl_mc_bus_driver_init() references a function __exit dprc_driver_exit(). This is often seen when error handling in the init function uses functionality in the exit path. The fix is often to remove the __exit annotation of dprc_driver_exit() so it may be used outside an exit section. Signed-off-by: Lijun Pan <Lijun.Pan@freescale.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/fsl-mc/include')
-rw-r--r--drivers/staging/fsl-mc/include/mc-private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/fsl-mc/include/mc-private.h b/drivers/staging/fsl-mc/include/mc-private.h
index 2c4cc794be7a..c706f778626e 100644
--- a/drivers/staging/fsl-mc/include/mc-private.h
+++ b/drivers/staging/fsl-mc/include/mc-private.h
@@ -103,7 +103,7 @@ int dprc_scan_objects(struct fsl_mc_device *mc_bus_dev);
int __init dprc_driver_init(void);
-void __exit dprc_driver_exit(void);
+void dprc_driver_exit(void);
int __init fsl_mc_allocator_driver_init(void);