Uwe Kleine-König
543c5040f5
ARM: make arrays containing machine compatible strings const
...
The definition
static const char *axxia_dt_match[] __initconst = {
...
defines a changable array of constant strings. That is you must not do:
*axxia_dt_match[0] = 'k';
but
axxia_dt_match[0] = "different string";
is fine. So the annotation __initconst is wrong and yields a compiler
error when other really const variables are added with __initconst.
As the struct machine_desc member dt_compat is declared as
const char *const *dt_compat;
making the arrays const is the better alternative over changing all
annotations to __initdata.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
2015-02-19 09:44:17 +01:00
..
2014-07-12 09:44:52 -07:00
2014-10-30 09:54:13 +09:00
2015-02-01 08:51:12 -08:00
2014-12-09 14:38:28 -08:00
2014-10-27 09:48:07 +09:00
2014-10-27 09:48:07 +09:00
2014-12-09 14:38:28 -08:00
2014-10-27 09:48:07 +09:00
2014-12-11 11:49:23 -08:00
2014-11-19 22:29:59 +01:00
2014-12-02 07:25:09 +10:00
2014-10-27 09:48:07 +09:00
2014-12-09 14:18:35 -08:00
2014-10-27 09:48:07 +09:00
2014-10-27 09:48:07 +09:00
2014-12-21 17:11:18 +09:00
2014-10-27 09:48:07 +09:00
2014-10-30 10:14:57 +09:00
2014-10-30 10:14:57 +09:00
2014-11-04 09:31:23 +09:00
2014-10-27 09:48:07 +09:00
2014-10-03 15:37:54 +02:00
2013-04-23 13:45:22 +02:00
2014-08-20 09:09:23 +09:00
2011-10-23 13:32:29 +01:00
2014-10-27 09:48:07 +09:00
2014-08-08 11:14:29 -07:00
2014-10-27 09:48:07 +09:00
2014-10-27 09:48:07 +09:00
2014-08-22 12:23:32 +09:00
2014-08-22 12:23:32 +09:00
2015-02-17 09:27:54 -08:00
2014-12-21 17:03:50 +09:00
2014-12-21 17:03:44 +09:00
2014-11-04 09:31:23 +09:00
2014-11-04 09:31:23 +09:00
2014-06-17 17:09:39 +09:00
2014-06-17 17:09:39 +09:00
2015-01-13 09:33:19 +09:00
2014-12-04 00:44:44 +01:00
2014-07-12 09:44:52 -07:00
2014-06-26 16:01:34 +09:00
2014-09-02 09:32:05 +09:00
2014-06-17 17:09:40 +09:00
2015-01-16 11:02:42 +09:00
2015-01-15 08:38:14 +09:00
2014-06-17 17:09:39 +09:00
2015-01-13 09:33:19 +09:00
2014-10-24 11:54:49 +09:00
2014-10-27 09:48:07 +09:00
2014-11-04 14:43:02 -08:00
2014-08-17 09:00:56 +09:00
2014-12-21 17:03:50 +09:00
2014-10-30 10:14:57 +09:00
2014-06-17 19:33:22 +09:00
2015-02-19 09:44:17 +01:00
2014-10-27 09:48:07 +09:00
2014-10-30 09:54:13 +09:00
2015-02-17 09:17:33 -08:00
2015-01-21 17:15:49 -08:00
2015-01-21 17:15:49 -08:00
2014-12-21 17:03:50 +09:00
2014-10-30 10:14:57 +09:00
2014-09-16 15:01:58 +09:00
2015-02-17 09:27:54 -08:00
2015-02-17 09:38:59 -08:00
2014-12-09 14:38:28 -08:00
2014-10-24 13:07:01 +09:00
2014-06-25 16:50:00 +09:00
2013-12-10 17:24:49 +09:00
2014-10-27 09:48:07 +09:00
2014-10-27 09:48:07 +09:00
2014-12-21 17:11:20 +09:00
2014-11-04 09:31:23 +09:00
2014-11-04 09:31:27 +09:00
2014-10-27 09:48:07 +09:00
2013-04-08 17:39:24 +02:00
2015-02-01 08:51:12 -08:00