From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754879AbdLTItn (ORCPT ); Wed, 20 Dec 2017 03:49:43 -0500 Received: from mail-io0-f193.google.com ([209.85.223.193]:41546 "EHLO mail-io0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754869AbdLTIti (ORCPT ); Wed, 20 Dec 2017 03:49:38 -0500 X-Google-Smtp-Source: ACJfBot8eVStKwwwOK+29ds8Yx9raVC/2HTNeRQb5H7pi1q+lQ8i3MPPdXfVIHT1HoubU0yjqjSn2w== From: Arvind Yadav To: nsekhar@ti.com, khilman@kernel.org, linux@armlinux.org.uk, kaloz@openwrt.org, khalasa@piap.pl, aaro.koskinen@iki.fi, tony@atomide.com, jason@lakedaemon.net, andrew@lunn.ch, sebastian.hesselbarth@gmail.com, gregory.clement@free-electrons.com, daniel@zonque.org, haojian.zhuang@gmail.com, robert.jarzmik@free.fr, marek.vasut@gmail.com, slapin@ossfans.org, jic23@cam.ac.uk, kgene@kernel.org, krzk@kernel.org, ralf@linux-mips.org, ysato@users.sourceforge.jp, dalias@libc.org, tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com Cc: linux-kernel@vger.kernel.org Subject: [PATCH 11/11] ARM: pxa: constify gpio_led Date: Wed, 20 Dec 2017 14:17:52 +0530 Message-Id: <6cd4fa3a594e5aae6e6a4d9cf8f7ba96e18c6c61.1513756005.git.arvind.yadav.cs@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: References: In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org gpio_led are not supposed to change at runtime. struct gpio_led_platform_data working with const gpio_led provided by . So mark the non-const structs as const. Signed-off-by: Arvind Yadav --- arch/arm/mach-pxa/balloon3.c | 4 ++-- arch/arm/mach-pxa/corgi.c | 2 +- arch/arm/mach-pxa/csb701.c | 2 +- arch/arm/mach-pxa/magician.c | 2 +- arch/arm/mach-pxa/mioa701.c | 2 +- arch/arm/mach-pxa/palmld.c | 2 +- arch/arm/mach-pxa/palmz72.c | 2 +- arch/arm/mach-pxa/pcm027.c | 2 +- arch/arm/mach-pxa/raumfeld.c | 4 ++-- arch/arm/mach-pxa/spitz.c | 2 +- arch/arm/mach-pxa/stargate2.c | 2 +- arch/arm/mach-pxa/tosa.c | 2 +- arch/arm/mach-pxa/trizeps4.c | 2 +- arch/arm/mach-pxa/zeus.c | 2 +- 14 files changed, 16 insertions(+), 16 deletions(-) diff --git a/arch/arm/mach-pxa/balloon3.c b/arch/arm/mach-pxa/balloon3.c index d6d92f3..4413829 100644 --- a/arch/arm/mach-pxa/balloon3.c +++ b/arch/arm/mach-pxa/balloon3.c @@ -387,7 +387,7 @@ static inline void balloon3_uhc_init(void) {} GPIO10_GPIO, /* Heartbeat LED */ }; -struct gpio_led balloon3_gpio_leds[] = { +struct const gpio_led balloon3_gpio_leds[] __initconst = { { .name = "balloon3:green:idle", .default_trigger = "heartbeat", @@ -414,7 +414,7 @@ struct gpio_led balloon3_gpio_leds[] = { } }; -struct gpio_led balloon3_pcf_gpio_leds[] = { +const struct gpio_led balloon3_pcf_gpio_leds[] __initconst = { { .name = "balloon3:green:led0", .gpio = BALLOON3_PCF_GPIO_LED0, diff --git a/arch/arm/mach-pxa/corgi.c b/arch/arm/mach-pxa/corgi.c index 7270f0db..b0e0d3b 100644 --- a/arch/arm/mach-pxa/corgi.c +++ b/arch/arm/mach-pxa/corgi.c @@ -450,7 +450,7 @@ struct platform_device corgiscoop_device = { /* * Corgi LEDs */ -static struct gpio_led corgi_gpio_leds[] = { +static const struct gpio_led corgi_gpio_leds[] __initconst = { { .name = "corgi:amber:charge", .default_trigger = "sharpsl-charge", diff --git a/arch/arm/mach-pxa/csb701.c b/arch/arm/mach-pxa/csb701.c index 527c9fd..ff52892 100644 --- a/arch/arm/mach-pxa/csb701.c +++ b/arch/arm/mach-pxa/csb701.c @@ -24,7 +24,7 @@ .nbuttons = ARRAY_SIZE(csb701_buttons), }; -static struct gpio_led csb701_leds[] = { +static const struct gpio_led csb701_leds[] __initconst = { { .name = "csb701:yellow:heartbeat", .default_trigger = "heartbeat", diff --git a/arch/arm/mach-pxa/magician.c b/arch/arm/mach-pxa/magician.c index 7f3566c..505d1e3 100644 --- a/arch/arm/mach-pxa/magician.c +++ b/arch/arm/mach-pxa/magician.c @@ -424,7 +424,7 @@ static void magician_backlight_exit(struct device *dev) * GPIO LEDs, Phone keys backlight, vibra */ -static struct gpio_led gpio_leds[] = { +static const struct gpio_led gpio_leds[] __initconst = { { .name = "magician::vibra", .default_trigger = "none", diff --git a/arch/arm/mach-pxa/mioa701.c b/arch/arm/mach-pxa/mioa701.c index 8a5d049..e3d2248 100644 --- a/arch/arm/mach-pxa/mioa701.c +++ b/arch/arm/mach-pxa/mioa701.c @@ -274,7 +274,7 @@ static void mioa701_lcd_power(int on, struct fb_var_screeninfo *si) */ #define ONE_LED(_gpio, _name) \ { .gpio = (_gpio), .name = (_name), .active_low = true } -static struct gpio_led gpio_leds[] = { +static const struct gpio_led gpio_leds[] __initconst = { ONE_LED(GPIO10_LED_nCharging, "mioa701:charging"), ONE_LED(GPIO97_LED_nBlue, "mioa701:blue"), ONE_LED(GPIO98_LED_nOrange, "mioa701:orange"), diff --git a/arch/arm/mach-pxa/palmld.c b/arch/arm/mach-pxa/palmld.c index 980f284..37239f4 100644 --- a/arch/arm/mach-pxa/palmld.c +++ b/arch/arm/mach-pxa/palmld.c @@ -246,7 +246,7 @@ static inline void palmld_keys_init(void) {} * LEDs ******************************************************************************/ #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE) -struct gpio_led gpio_leds[] = { +struct const gpio_led gpio_leds[] __initconst = { { .name = "palmld:green:led", .default_trigger = "none", diff --git a/arch/arm/mach-pxa/palmz72.c b/arch/arm/mach-pxa/palmz72.c index 5877e54..acacadb 100644 --- a/arch/arm/mach-pxa/palmz72.c +++ b/arch/arm/mach-pxa/palmz72.c @@ -182,7 +182,7 @@ static inline void palmz72_kpc_init(void) {} * LEDs ******************************************************************************/ #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE) -static struct gpio_led gpio_leds[] = { +static const struct gpio_led gpio_leds[] __initconst = { { .name = "palmz72:green:led", .default_trigger = "none", diff --git a/arch/arm/mach-pxa/pcm027.c b/arch/arm/mach-pxa/pcm027.c index ccca9f7..face4c8 100644 --- a/arch/arm/mach-pxa/pcm027.c +++ b/arch/arm/mach-pxa/pcm027.c @@ -177,7 +177,7 @@ #ifdef CONFIG_LEDS_GPIO -static struct gpio_led pcm027_led[] = { +static const struct gpio_led pcm027_led[] __initconst = { { .name = "led0:red", /* FIXME */ .gpio = PCM027_LED_CPU diff --git a/arch/arm/mach-pxa/raumfeld.c b/arch/arm/mach-pxa/raumfeld.c index 9d662fe..633c74d 100644 --- a/arch/arm/mach-pxa/raumfeld.c +++ b/arch/arm/mach-pxa/raumfeld.c @@ -468,7 +468,7 @@ * GPIO LEDs */ -static struct gpio_led raumfeld_leds[] = { +static const struct gpio_led raumfeld_leds[] __initconst = { { .name = "raumfeld:1", .gpio = GPIO_LED1, @@ -558,7 +558,7 @@ static void __init raumfeld_w1_init(void) }; /* LT3593 controlled backlight */ -static struct gpio_led raumfeld_lt3593_led = { +static const struct gpio_led raumfeld_lt3593_led __initconst = { .name = "backlight", .gpio = mfp_to_gpio(MFP_PIN_GPIO17), .default_state = LEDS_GPIO_DEFSTATE_ON, diff --git a/arch/arm/mach-pxa/spitz.c b/arch/arm/mach-pxa/spitz.c index 67d66c7..d24be35 100644 --- a/arch/arm/mach-pxa/spitz.c +++ b/arch/arm/mach-pxa/spitz.c @@ -456,7 +456,7 @@ static inline void spitz_keys_init(void) {} * LEDs ******************************************************************************/ #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE) -static struct gpio_led spitz_gpio_leds[] = { +static const struct gpio_led spitz_gpio_leds[] __initconst = { { .name = "spitz:amber:charge", .default_trigger = "sharpsl-charge", diff --git a/arch/arm/mach-pxa/stargate2.c b/arch/arm/mach-pxa/stargate2.c index 6b7df6f..3704d6c 100644 --- a/arch/arm/mach-pxa/stargate2.c +++ b/arch/arm/mach-pxa/stargate2.c @@ -441,7 +441,7 @@ static int imote2_mci_get_ro(struct device *dev) .gpio_power = -1, }; -static struct gpio_led imote2_led_pins[] = { +static const struct gpio_led imote2_led_pins[] __initconst = { { .name = "imote2:red", .gpio = 103, diff --git a/arch/arm/mach-pxa/tosa.c b/arch/arm/mach-pxa/tosa.c index 6a386fd..d306b96 100644 --- a/arch/arm/mach-pxa/tosa.c +++ b/arch/arm/mach-pxa/tosa.c @@ -548,7 +548,7 @@ static void tosa_irda_shutdown(struct device *dev) /* * Tosa LEDs */ -static struct gpio_led tosa_gpio_leds[] = { +static const struct gpio_led tosa_gpio_leds[] __initconst = { { .name = "tosa:amber:charge", .default_trigger = "main-battery-charging", diff --git a/arch/arm/mach-pxa/trizeps4.c b/arch/arm/mach-pxa/trizeps4.c index 3dd13b4..4f95c03 100644 --- a/arch/arm/mach-pxa/trizeps4.c +++ b/arch/arm/mach-pxa/trizeps4.c @@ -235,7 +235,7 @@ /**************************************************************************** * LED's on GPIO pins of PXA ****************************************************************************/ -static struct gpio_led trizeps4_led[] = { +static const struct gpio_led trizeps4_led[] __initconst = { #ifdef STATUS_LEDS_ON_STUART_PINS { .name = "led0:orange:heartbeat", /* */ diff --git a/arch/arm/mach-pxa/zeus.c b/arch/arm/mach-pxa/zeus.c index ecbcaee..8ceafd7 100644 --- a/arch/arm/mach-pxa/zeus.c +++ b/arch/arm/mach-pxa/zeus.c @@ -438,7 +438,7 @@ static void __init zeus_init_irq(void) }; /* Leds */ -static struct gpio_led zeus_leds[] = { +static const struct gpio_led zeus_leds[] __initconst = { [0] = { .name = "zeus:yellow:1", .default_trigger = "heartbeat", -- 1.9.1