]> asedeno.scripts.mit.edu Git - linux.git/commit
staging: fsl-mc: section mismatch bug fix
authorLijun Pan <Lijun.Pan@freescale.com>
Sun, 25 Oct 2015 22:41:19 +0000 (17:41 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 Oct 2015 05:40:14 +0000 (14:40 +0900)
commit3c7b67f9065d0b83e8501318003551e63c6b48b4
tree2c6a358137aa877762bdb99d46115d914f0d2d14
parenta15b2225dd504d6fb5eb4b5a1b29b71cdc9b1f06
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>
drivers/staging/fsl-mc/bus/dprc-driver.c
drivers/staging/fsl-mc/include/mc-private.h