From: Philipp Zabel Date: Thu, 29 Oct 2015 08:59:34 +0000 (+0100) Subject: reset: sunxi: mark the of_device_id array as __initconst X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=fddad17ed11f1f3c2dd2f9b3b7691a097549c9f3;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git reset: sunxi: mark the of_device_id array as __initconst Since this array is static const, it should be marked as __initconst. Signed-off-by: Philipp Zabel Acked-by: Maxime Ripard --- diff --git a/drivers/reset/reset-sunxi.c b/drivers/reset/reset-sunxi.c index 3d95c87160b3..9353b2dd153f 100644 --- a/drivers/reset/reset-sunxi.c +++ b/drivers/reset/reset-sunxi.c @@ -122,7 +122,7 @@ err_alloc: * our system, before we can even think of using a regular device * driver for it. */ -static const struct of_device_id sunxi_early_reset_dt_ids[] __initdata = { +static const struct of_device_id sunxi_early_reset_dt_ids[] __initconst = { { .compatible = "allwinner,sun6i-a31-ahb1-reset", }, { /* sentinel */ }, };