diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2011-06-27 19:18:13 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-06-27 21:00:13 -0400 |
commit | 5286bd953645408634daa880d04c73dd18d0224a (patch) | |
tree | ef7fd3a9201617acb91804e449e7a78425b2d5a1 | |
parent | ac34a1a3c39da0a1b9188d12a9ce85506364ed2a (diff) |
drivers/leds/leds-lp5521.c: fix section mismatches
Fix this section mismatch:
WARNING: drivers/leds/leds-lp5521.o(.text+0xf2c): Section mismatch in reference from the function lp5521_probe() to the function .init.text:lp5521_init_led()
The function lp5521_probe() references
the function __init lp5521_init_led().
This is often because lp5521_probe lacks a __init
annotation or the annotation of lp5521_init_led is wrong.
Fixing this mismatch triggers one more mismatch, fix that one as well.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Cc: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/leds/leds-lp5521.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/leds/leds-lp5521.c b/drivers/leds/leds-lp5521.c index c0cff64a1ae6..cc1dc4817fac 100644 --- a/drivers/leds/leds-lp5521.c +++ b/drivers/leds/leds-lp5521.c | |||
@@ -593,7 +593,7 @@ static void lp5521_unregister_sysfs(struct i2c_client *client) | |||
593 | &lp5521_led_attribute_group); | 593 | &lp5521_led_attribute_group); |
594 | } | 594 | } |
595 | 595 | ||
596 | static int __init lp5521_init_led(struct lp5521_led *led, | 596 | static int __devinit lp5521_init_led(struct lp5521_led *led, |
597 | struct i2c_client *client, | 597 | struct i2c_client *client, |
598 | int chan, struct lp5521_platform_data *pdata) | 598 | int chan, struct lp5521_platform_data *pdata) |
599 | { | 599 | { |
@@ -637,7 +637,7 @@ static int __init lp5521_init_led(struct lp5521_led *led, | |||
637 | return 0; | 637 | return 0; |
638 | } | 638 | } |
639 | 639 | ||
640 | static int lp5521_probe(struct i2c_client *client, | 640 | static int __devinit lp5521_probe(struct i2c_client *client, |
641 | const struct i2c_device_id *id) | 641 | const struct i2c_device_id *id) |
642 | { | 642 | { |
643 | struct lp5521_chip *chip; | 643 | struct lp5521_chip *chip; |