From: Axel Lin Date: Sun, 5 Jun 2016 08:28:17 +0000 (+0800) Subject: mfd: max77620: Constify resources tables X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2be59755e66d34f46001ca19224ab4cefb212c51;p=linux-beck.git mfd: max77620: Constify resources tables These tables are never modified, so declare them as const. Signed-off-by: Axel Lin Signed-off-by: Lee Jones --- diff --git a/drivers/mfd/max77620.c b/drivers/mfd/max77620.c index 84a830598fc9..d4688f3cfe02 100644 --- a/drivers/mfd/max77620.c +++ b/drivers/mfd/max77620.c @@ -37,19 +37,19 @@ #include #include -static struct resource gpio_resources[] = { +static const struct resource gpio_resources[] = { DEFINE_RES_IRQ(MAX77620_IRQ_TOP_GPIO), }; -static struct resource power_resources[] = { +static const struct resource power_resources[] = { DEFINE_RES_IRQ(MAX77620_IRQ_LBT_MBATLOW), }; -static struct resource rtc_resources[] = { +static const struct resource rtc_resources[] = { DEFINE_RES_IRQ(MAX77620_IRQ_TOP_RTC), }; -static struct resource thermal_resources[] = { +static const struct resource thermal_resources[] = { DEFINE_RES_IRQ(MAX77620_IRQ_LBT_TJALRM1), DEFINE_RES_IRQ(MAX77620_IRQ_LBT_TJALRM2), };