diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-08-09 09:19:33 -0700 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2013-08-20 12:51:29 +0200 |
commit | eb967b6a332688a8d83e7782953cc1017da514ff (patch) | |
tree | d705c126eb0e55632cd8a29913e77c043fc172cd /Documentation/leds/leds-lp3944.txt | |
parent | c74499279bb0f4887a8faa9522160be8d7c7008d (diff) | |
download | linux-eb967b6a332688a8d83e7782953cc1017da514ff.tar.gz linux-eb967b6a332688a8d83e7782953cc1017da514ff.tar.bz2 linux-eb967b6a332688a8d83e7782953cc1017da514ff.zip |
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>
Acked-by: Rob Landley <rob@landley.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'Documentation/leds/leds-lp3944.txt')
-rw-r--r-- | Documentation/leds/leds-lp3944.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/leds/leds-lp3944.txt b/Documentation/leds/leds-lp3944.txt index c6eda18b15ef..e88ac3b60c08 100644 --- a/Documentation/leds/leds-lp3944.txt +++ b/Documentation/leds/leds-lp3944.txt @@ -37,7 +37,7 @@ registered using the i2c_board_info mechanism. To register the chip at address 0x60 on adapter 0, set the platform data according to include/linux/leds-lp3944.h, set the i2c board info: - static struct i2c_board_info __initdata a910_i2c_board_info[] = { + static struct i2c_board_info a910_i2c_board_info[] __initdata = { { I2C_BOARD_INFO("lp3944", 0x60), .platform_data = &a910_lp3944_leds, |