diff options
author | Eric Nelson <eric.nelson@boundarydevices.com> | 2012-10-03 07:27:39 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2012-10-16 12:35:11 +0200 |
commit | 08fd6a3580876acc92ab8a8dceb70064f187447f (patch) | |
tree | 6ff6229777be2b9528ad20e007f318769ff64a20 /board/freescale | |
parent | 09c8bb264f27b89f31c5b6cbdab2393d68743e4e (diff) | |
download | u-boot-imx-08fd6a3580876acc92ab8a8dceb70064f187447f.zip u-boot-imx-08fd6a3580876acc92ab8a8dceb70064f187447f.tar.gz u-boot-imx-08fd6a3580876acc92ab8a8dceb70064f187447f.tar.bz2 |
i.MX: ipufb: add const to fb_videomode declarations
Signed-off-by: Eric Nelson <eric.nelson@boundarydevices.com>
Diffstat (limited to 'board/freescale')
-rw-r--r-- | board/freescale/mx51evk/mx51evk.c | 2 | ||||
-rw-r--r-- | board/freescale/mx53loco/mx53loco.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/freescale/mx51evk/mx51evk.c b/board/freescale/mx51evk/mx51evk.c index 3412952..421d8c2 100644 --- a/board/freescale/mx51evk/mx51evk.c +++ b/board/freescale/mx51evk/mx51evk.c @@ -471,7 +471,7 @@ int board_mmc_init(bd_t *bis) } #endif -static struct fb_videomode claa_wvga = { +static struct fb_videomode const claa_wvga = { .name = "CLAA07LC0ACW", .refresh = 57, .xres = 800, diff --git a/board/freescale/mx53loco/mx53loco.c b/board/freescale/mx53loco/mx53loco.c index 20569a5..a11e883 100644 --- a/board/freescale/mx53loco/mx53loco.c +++ b/board/freescale/mx53loco/mx53loco.c @@ -412,7 +412,7 @@ static void clock_1GHz(void) printf("CPU: Switch DDR clock to 400MHz failed\n"); } -static struct fb_videomode claa_wvga = { +static struct fb_videomode const claa_wvga = { .name = "CLAA07LC0ACW", .refresh = 57, .xres = 800, |