linux/drivers/clk/ti
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
..
apll.c
autoidle.c
clk-2xxx.c
clk-3xxx-legacy.c
clk-3xxx.c
clk-7xx.c
clk-33xx.c
clk-43xx.c
clk-44xx.c
clk-54xx.c
clk-816x.c
clk-dra7-atl.c clk: constify of_device_id array 2015-04-01 10:59:27 -07:00
clk.c
clock.h
clockdomain.c clk: constify of_device_id array 2015-04-01 10:59:27 -07:00
composite.c clk: don't use __initconst for non-const arrays 2015-04-12 17:18:27 -07:00
divider.c
dpll.c
fapll.c
fixed-factor.c
gate.c
interface.c
Makefile
mux.c