summaryrefslogtreecommitdiff
path: root/Documentation/leds/leds-lm3556.txt
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-08-07 22:07:59 -0700
committerBryan Wu <cooloney@gmail.com>2013-08-26 17:22:12 -0700
commite5862b9a521fcb2d5f95898b506fbc788762fca5 (patch)
tree74c60c593754b1019167879233ffa3a9d049aabe /Documentation/leds/leds-lm3556.txt
parentb06cf2d7ec51c12eb5f9d191d461bd9c08f2c107 (diff)
Documentation: leds: Fix a typo
__initdata should be placed between the variable name and equal sign for the variable to be placed in the intended section. Fix the example. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Bryan Wu <cooloney@gmail.com>
Diffstat (limited to 'Documentation/leds/leds-lm3556.txt')
-rw-r--r--Documentation/leds/leds-lm3556.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/leds/leds-lm3556.txt b/Documentation/leds/leds-lm3556.txt
index d9eb91b51913..62278e871b50 100644
--- a/Documentation/leds/leds-lm3556.txt
+++ b/Documentation/leds/leds-lm3556.txt
@@ -71,7 +71,7 @@ To register the chip at address 0x63 on specific adapter, set the platform data
according to include/linux/platform_data/leds-lm3556.h, set the i2c board info
Example:
- static struct i2c_board_info __initdata board_i2c_ch4[] = {
+ static struct i2c_board_info board_i2c_ch4[] __initdata = {
{
I2C_BOARD_INFO(LM3556_NAME, 0x63),
.platform_data = &lm3556_pdata,