diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-07-11 10:01:10 +0800 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-07-16 15:26:45 +0200 |
commit | 706c96b7208b6b4f070b7f5c104ea917c48043f5 (patch) | |
tree | 7fb1c5265985e9ea32d170ba6885e04e71480d73 /include/linux/mfd/88pm80x.h | |
parent | 46b65a8fe63ece3b01d7d0c5e3bb5b9f478c44d5 (diff) |
mfd: Remove __devexit annotation for pm80x_deinit
This fixes below section mismatch warning:
LD drivers/mfd/built-in.o
WARNING: drivers/mfd/built-in.o(.devinit.text+0x46c): Section mismatch in reference from the function pm800_probe() to the function .devexit.text:pm80x_deinit()
The function __devinit pm800_probe() references
a function __devexit pm80x_deinit().
This is often seen when error handling in the init function
uses functionality in the exit path.
The fix is often to remove the __devexit annotation of
pm80x_deinit() so it may be used outside an exit section.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'include/linux/mfd/88pm80x.h')
-rw-r--r-- | include/linux/mfd/88pm80x.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mfd/88pm80x.h b/include/linux/mfd/88pm80x.h index 103f06d1892..a0ca0dca124 100644 --- a/include/linux/mfd/88pm80x.h +++ b/include/linux/mfd/88pm80x.h @@ -365,5 +365,5 @@ static inline int pm80x_dev_resume(struct device *dev) extern int pm80x_init(struct i2c_client *client, const struct i2c_device_id *id) __devinit; -extern int pm80x_deinit(struct i2c_client *client) __devexit; +extern int pm80x_deinit(struct i2c_client *client); #endif /* __LINUX_MFD_88PM80X_H */ |