Uwe Kleine-König 692d8328e8 clk: don't use __initconst for non-const arrays
The statement

	static const char *name[];

defines a modifiable array of pointers to constant chars. That is

	*name[0] = 'f';

is forbidden, but

	name[0] = "f";

is not. So marking an array that is defined as above with __initconst is
wrong. Either an additional const must be added such that the whole
definition reads:

	static const char *const name[] __initconst;

or where this is not possible __initdata must be used.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Michael Turquette <mturquette@linaro.org>
2015-04-12 17:18:27 -07:00
..
2015-02-02 14:23:42 -08:00
2015-02-02 14:23:42 -08:00
2015-04-01 10:59:27 -07:00
2015-01-20 10:10:51 -08:00
2014-07-28 23:30:46 -07:00
2013-05-31 12:07:45 -07:00
2015-04-01 10:59:27 -07:00
2015-04-10 14:44:43 -07:00
2014-05-27 18:29:04 -07:00
2015-03-12 12:20:36 -07:00
2015-04-10 14:44:43 -07:00
2015-04-10 14:44:43 -07:00