diff options
author | Bryan Wu <bryan.wu@canonical.com> | 2010-12-07 21:42:04 -0500 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2011-01-14 06:37:48 -0500 |
commit | 5b9cecd68f3ef72ab9e586b0c2995a40a2f1e630 (patch) | |
tree | 45bcfd8129a0f078b7a72c69623dbcdc79253b28 | |
parent | e098aded79f24e2024139e82f778ff9db6dc142a (diff) |
mfd: Fix twl_probe section mismatch warning in mfd/twl-core.c
Fix the following section mismatch warning when building
omap2plus_defconfig:
WARNING: vmlinux.o(.data+0x47d7c): Section mismatch in reference
from the variable twl_driver to the function .init.text:twl_probe()
Signed-off-by: Bryan Wu <bryan.wu@canonical.com>
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
-rw-r--r-- | drivers/mfd/twl-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/twl-core.c b/drivers/mfd/twl-core.c index 12abd5b924b3..a35fa7dcbf53 100644 --- a/drivers/mfd/twl-core.c +++ b/drivers/mfd/twl-core.c | |||
@@ -1003,7 +1003,7 @@ static int twl_remove(struct i2c_client *client) | |||
1003 | } | 1003 | } |
1004 | 1004 | ||
1005 | /* NOTE: this driver only handles a single twl4030/tps659x0 chip */ | 1005 | /* NOTE: this driver only handles a single twl4030/tps659x0 chip */ |
1006 | static int __init | 1006 | static int __devinit |
1007 | twl_probe(struct i2c_client *client, const struct i2c_device_id *id) | 1007 | twl_probe(struct i2c_client *client, const struct i2c_device_id *id) |
1008 | { | 1008 | { |
1009 | int status; | 1009 | int status; |