aboutsummaryrefslogtreecommitdiffstats
path: root/arch/h8300/kernel
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2009-02-09 21:39:32 +0100
committerJiri Kosina <jkosina@suse.cz>2009-03-30 15:22:02 +0200
commitb04f376151d17cb7cad48c932ba516622c167b44 (patch)
tree766057e281b5f129a5a65a1d34952e3cc84d7e78 /arch/h8300/kernel
parenttrivial: fix where cgroup documentation is not correctly referred to (diff)
downloadlinux-dev-b04f376151d17cb7cad48c932ba516622c167b44.tar.xz
linux-dev-b04f376151d17cb7cad48c932ba516622c167b44.zip
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 <tklauser@distanz.ch> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'arch/h8300/kernel')
-rw-r--r--arch/h8300/kernel/timer/tpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/h8300/kernel/timer/tpu.c b/arch/h8300/kernel/timer/tpu.c
index df7f453a9673..79ae1db9ea90 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)