diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-08-08 10:45:10 +0530 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-08 11:43:44 +0100 |
commit | 61679efe979674d794988c2b96b02b2a80d96d96 (patch) | |
tree | 0fa3208e8265a02922dc028bb6ce4bb9fa581085 /Documentation/spi | |
parent | c095ba7224d8edc71dcef0d655911399a8bd4a3f (diff) | |
download | linux-61679efe979674d794988c2b96b02b2a80d96d96.tar.gz linux-61679efe979674d794988c2b96b02b2a80d96d96.tar.bz2 linux-61679efe979674d794988c2b96b02b2a80d96d96.zip |
spi/documentation: Fix usage of __initdata
__initdata should be placed between the variable name and equal
sign for the variable to be placed in the intended section. Fix
the example code.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'Documentation/spi')
-rw-r--r-- | Documentation/spi/spi-summary | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/spi/spi-summary b/Documentation/spi/spi-summary index 2331eb214146..f21edb983413 100644 --- a/Documentation/spi/spi-summary +++ b/Documentation/spi/spi-summary @@ -215,7 +215,7 @@ So for example arch/.../mach-*/board-*.c files might have code like: /* if your mach-* infrastructure doesn't support kernels that can * run on multiple boards, pdata wouldn't benefit from "__init". */ - static struct mysoc_spi_data __initdata pdata = { ... }; + static struct mysoc_spi_data pdata __initdata = { ... }; static __init board_init(void) { |