diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2012-05-29 15:07:31 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-05-29 16:22:32 -0700 |
commit | 26d7b99b835294ab21e2a2b4b3bdf04b03b0028d (patch) | |
tree | 5fc743efbd38408361b7bf99eb1fadebd7a5940d /lib | |
parent | 17a801f4bfeb8d55df1b05fa7adb16ada504e765 (diff) | |
download | linux-3.10-26d7b99b835294ab21e2a2b4b3bdf04b03b0028d.tar.gz linux-3.10-26d7b99b835294ab21e2a2b4b3bdf04b03b0028d.tar.bz2 linux-3.10-26d7b99b835294ab21e2a2b4b3bdf04b03b0028d.zip |
lib/test-kstrtox.c: mark const init data with __initconst instead of __initdata
As long as there is no other non-const variable marked __initdata in the
same compilation unit it doesn't hurt. If there were one however
compilation would fail with
error: $variablename causes a section type conflict
because a section containing const variables is marked read only and so
cannot contain non-const variables.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/test-kstrtox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/test-kstrtox.c b/lib/test-kstrtox.c index d55769d63cb..bea3f3fa3f0 100644 --- a/lib/test-kstrtox.c +++ b/lib/test-kstrtox.c @@ -11,7 +11,7 @@ struct test_fail { }; #define DEFINE_TEST_FAIL(test) \ - const struct test_fail test[] __initdata + const struct test_fail test[] __initconst #define DECLARE_TEST_OK(type, test_type) \ test_type { \ @@ -21,7 +21,7 @@ struct test_fail { } #define DEFINE_TEST_OK(type, test) \ - const type test[] __initdata + const type test[] __initconst #define TEST_FAIL(fn, type, fmt, test) \ { \ |