summaryrefslogtreecommitdiffstats
path: root/arch/mips/txx9
diff options
context:
space:
mode:
authorArvind Yadav2017-12-26 07:33:10 +0100
committerJames Hogan2018-02-19 11:55:36 +0100
commit21cff2d946cd4710abac23d6a7b81ff1965f3fed (patch)
tree1c017e4953f783d98afcdb28b6f5aa7a9a99dce3 /arch/mips/txx9
parentMIPS: AR7: Constify gpio_led (diff)
downloadkernel-qcow2-linux-21cff2d946cd4710abac23d6a7b81ff1965f3fed.tar.gz
kernel-qcow2-linux-21cff2d946cd4710abac23d6a7b81ff1965f3fed.tar.xz
kernel-qcow2-linux-21cff2d946cd4710abac23d6a7b81ff1965f3fed.zip
MIPS: TXX9: Constify gpio_led
gpio_leds are not supposed to change at runtime. struct gpio_led_platform_data contains a const struct gpio_led pointer since v2.6.39, so mark the gpio_led structures const too. Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/18008/ [jhogan@kernel.org: improve commit message] Signed-off-by: James Hogan <jhogan@kernel.org>
Diffstat (limited to 'arch/mips/txx9')
-rw-r--r--arch/mips/txx9/rbtx4927/setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/txx9/rbtx4927/setup.c b/arch/mips/txx9/rbtx4927/setup.c
index f5b367e20dff..31955c1d5555 100644
--- a/arch/mips/txx9/rbtx4927/setup.c
+++ b/arch/mips/txx9/rbtx4927/setup.c
@@ -319,7 +319,7 @@ static void __init rbtx4927_mtd_init(void)
static void __init rbtx4927_gpioled_init(void)
{
- static struct gpio_led leds[] = {
+ static const struct gpio_led leds[] = {
{ .name = "gpioled:green:0", .gpio = 0, .active_low = 1, },
{ .name = "gpioled:green:1", .gpio = 1, .active_low = 1, },
};