aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2014-07-01 04:47:48 -0400
committerLinus Walleij <linus.walleij@linaro.org>2014-07-10 04:37:43 -0400
commit922468cdf1a704c0c13e023d634ff802edc37910 (patch)
treeff4d98c9eff528362c267d5e41d9783a6c199c97 /arch
parentaaebafb65d0cfba742b4e5d8fa6ec2e3a6bc308a (diff)
ARM: ux500: 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: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-ux500/timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-ux500/timer.c b/arch/arm/mach-ux500/timer.c
index 87efda0aa348..ff28d8ad1ed7 100644
--- a/arch/arm/mach-ux500/timer.c
+++ b/arch/arm/mach-ux500/timer.c
@@ -16,7 +16,7 @@
16#include "db8500-regs.h" 16#include "db8500-regs.h"
17#include "id.h" 17#include "id.h"
18 18
19const static struct of_device_id prcmu_timer_of_match[] __initconst = { 19static const struct of_device_id prcmu_timer_of_match[] __initconst = {
20 { .compatible = "stericsson,db8500-prcmu-timer-4", }, 20 { .compatible = "stericsson,db8500-prcmu-timer-4", },
21 { }, 21 { },
22}; 22};