From: Tobias Klauser Date: Mon, 9 Feb 2009 20:39:32 +0000 (+0100) Subject: trivial: h8300: Storage class should be before const qualifier X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=b04f376151d17cb7cad48c932ba516622c167b44;p=linux-2.6-omap-h63xx.git trivial: h8300: Storage class should be before const qualifier The C99 specification states in section 6.11.5: The placement of a storage-class specifier other than at the beginning of the declaration specifiers in a declaration is an obsolescent feature. Signed-off-by: Tobias Klauser Signed-off-by: Jiri Kosina --- diff --git a/arch/h8300/kernel/timer/tpu.c b/arch/h8300/kernel/timer/tpu.c index df7f453a967..79ae1db9ea9 100644 --- a/arch/h8300/kernel/timer/tpu.c +++ b/arch/h8300/kernel/timer/tpu.c @@ -68,7 +68,7 @@ static struct irqaction tpu_irq = { .mask = CPU_MASK_NONE, }; -const static int __initdata divide_rate[] = { +static const int __initdata divide_rate[] = { #if CONFIG_H8300_TPU_CH == 0 1,4,16,64,0,0,0,0, #elif (CONFIG_H8300_TPU_CH == 1) || (CONFIG_H8300_TPU_CH == 5)