]> Git Repo - linux.git/commitdiff
drivers/video/backlight/da9052_bl.c: add missing const
authorJingoo Han <[email protected]>
Tue, 18 Dec 2012 00:00:48 +0000 (16:00 -0800)
committerLinus Torvalds <[email protected]>
Tue, 18 Dec 2012 01:15:16 +0000 (17:15 -0800)
Add 'const' to static array that was missing it in its definition.

Signed-off-by: Jingoo Han <[email protected]>
Cc: Ashish Jangam <[email protected]>
Cc: Richard Purdie <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/video/backlight/da9052_bl.c

index ac196181fe45a88ae45965ac7d18cb91570b1eb3..842da5a3ac4f2fde626b7c23ef7975ab01870eec 100644 (file)
@@ -34,7 +34,7 @@ enum {
        DA9052_TYPE_WLED3,
 };
 
-static unsigned char wled_bank[] = {
+static const unsigned char wled_bank[] = {
        DA9052_LED1_CONF_REG,
        DA9052_LED2_CONF_REG,
        DA9052_LED3_CONF_REG,
This page took 0.0593 seconds and 4 git commands to generate.