diff options
author | Jingoo Han <jg1.han@samsung.com> | 2012-12-18 04:00:54 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-18 05:15:16 +0400 |
commit | 3fd00432df3c4ae3c54a10360634f6d3a4a787c4 (patch) | |
tree | f447a7c3a172ffc4c9ef80212b0bbb815d21003b /drivers/video/backlight/ili9320.h | |
parent | 53c7a2fffd71787299d6c7a7107b233d37ad7284 (diff) | |
download | linux-3fd00432df3c4ae3c54a10360634f6d3a4a787c4.tar.xz |
drivers/video/backlight/vgg2432a4.c: add missing const
Add 'const' to static array that was missing it in its definition. Also,
'const' is added to ili9320_write_regs(), because it is called by
vgg2432a4 driver.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/backlight/ili9320.h')
-rw-r--r-- | drivers/video/backlight/ili9320.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/backlight/ili9320.h b/drivers/video/backlight/ili9320.h index e388eca7cac5..e0db738f7bb9 100644 --- a/drivers/video/backlight/ili9320.h +++ b/drivers/video/backlight/ili9320.h @@ -63,7 +63,7 @@ extern int ili9320_write(struct ili9320 *ili, unsigned int reg, unsigned int value); extern int ili9320_write_regs(struct ili9320 *ili, - struct ili9320_reg *values, + const struct ili9320_reg *values, int nr_values); /* Device probe */ |