On Sat, Jul 09, 2011 at 11:12:35PM +0200, Jesper Juhl wrote: > Make sure that the 'static' keywork is at the beginning of declaration > for arch/mips/include/asm/mach-jz4740/gpio.h > > 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). > Also a few tiny whitespace changes. > - const static struct jz_gpio_bulk_request i2c_pins[] = { > + static const struct jz_gpio_bulk_request i2c_pins[] = { Quite surprising - but that still was valid C - just type for example: int typedef (*func(const char op))(int a, int b[static const a = 3]); Ralf