arm: mach-shmobile: Constify sh_mobile_meram_cfg structures

The structures, passed to the sh_mobile_lcdcfb driver through platform
data, are read only by the driver. Make them const.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Laurent Pinchart 2011-09-11 23:30:45 +02:00
parent b5ef967df1
commit c241a0e0c2
2 changed files with 5 additions and 4 deletions

View file

@ -369,7 +369,7 @@ static int mackerel_get_brightness(void)
return gpio_get_value(GPIO_PORT31);
}
static struct sh_mobile_meram_cfg lcd_meram_cfg = {
static const struct sh_mobile_meram_cfg lcd_meram_cfg = {
.icb[0] = {
.meram_size = 0x40,
},
@ -455,7 +455,7 @@ static struct platform_device hdmi_device = {
},
};
static struct sh_mobile_meram_cfg hdmi_meram_cfg = {
static const struct sh_mobile_meram_cfg hdmi_meram_cfg = {
.icb[0] = {
.meram_size = 0x100,
},