Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drivers/leds/leds-lp5523.c: fix section mismatches

Fix this section mismatch:

WARNING: drivers/leds/leds-lp5523.o(.text+0x12f4): Section mismatch in reference from the function lp5523_probe() to the function .init.text:lp5523_init_led()
The function lp5523_probe() references
the function __init lp5523_init_led().
This is often because lp5523_probe lacks a __init
annotation or the annotation of lp5523_init_led is wrong.

Fixing this one 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>

authored by

Ralf Baechle and committed by
Linus Torvalds
33721bd3 5286bd95

+2 -2
+2 -2
drivers/leds/leds-lp5523.c
··· 826 826 return 0; 827 827 } 828 828 829 - static int __init lp5523_init_led(struct lp5523_led *led, struct device *dev, 829 + static int __devinit lp5523_init_led(struct lp5523_led *led, struct device *dev, 830 830 int chan, struct lp5523_platform_data *pdata) 831 831 { 832 832 char name[32]; ··· 872 872 873 873 static struct i2c_driver lp5523_driver; 874 874 875 - static int lp5523_probe(struct i2c_client *client, 875 + static int __devinit lp5523_probe(struct i2c_client *client, 876 876 const struct i2c_device_id *id) 877 877 { 878 878 struct lp5523_chip *chip;