SH: static should be at beginning of declaration

Make sure that the 'static' keywork is at the beginning of declaration
for arch/sh/*

This gets rid of warnings like
  warning: ‘static’ is not at beginning of declaration
when building with -Wold-style-declaration (and/or -Wextra which also
enables it).

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
Jesper Juhl
2011-07-09 23:16:22 +02:00
committed by Jiri Kosina
parent 628d7f697c
commit e04008eb38
5 changed files with 7 additions and 7 deletions

View File

@@ -233,7 +233,7 @@ static struct platform_device usb1_common_device = {
};
/* LCDC */
const static struct fb_videomode ecovec_lcd_modes[] = {
static const struct fb_videomode ecovec_lcd_modes[] = {
{
.name = "Panel",
.xres = 800,
@@ -248,7 +248,7 @@ const static struct fb_videomode ecovec_lcd_modes[] = {
},
};
const static struct fb_videomode ecovec_dvi_modes[] = {
static const struct fb_videomode ecovec_dvi_modes[] = {
{
.name = "DVI",
.xres = 1280,