summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2010-10-15 10:56:47 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2010-10-21 22:21:30 +0200
commit3065db07aa6b33ccaa2bc2d693d94bb6e72eb703 (patch)
tree0e6907cecd36e402ddce784a31c178c08b923705 /arch
parent51d4b747897664fcafa9076a8d71977b3142998b (diff)
downloadbarebox-3065db07aa6b33ccaa2bc2d693d94bb6e72eb703.tar.gz
barebox-3065db07aa6b33ccaa2bc2d693d94bb6e72eb703.tar.xz
pcm043: fix compiler warning
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/boards/pcm043/pcm043.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boards/pcm043/pcm043.c b/arch/arm/boards/pcm043/pcm043.c
index 9f98795fd1..5932f954c3 100644
--- a/arch/arm/boards/pcm043/pcm043.c
+++ b/arch/arm/boards/pcm043/pcm043.c
@@ -93,7 +93,7 @@ static struct device_d nand_dev = {
};
#ifdef CONFIG_PCM043_DISPLAY_SHARP
-static const struct fb_videomode pcm043_fb_mode = {
+static struct fb_videomode pcm043_fb_mode = {
/* 240x320 @ 60 Hz */
.name = "Sharp-LQ035Q7",
.refresh = 60,
@@ -111,7 +111,7 @@ static const struct fb_videomode pcm043_fb_mode = {
.flag = 0,
};
#else
-static const struct fb_videomode pcm043_fb_mode = {
+static struct fb_videomode pcm043_fb_mode = {
/* 240x320 @ 60 Hz */
.name = "TX090",
.refresh = 60,