diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2009-02-17 04:11:42 -0500 |
---|---|---|
committer | Samuel Ortiz <samuel@sortiz.org> | 2009-04-04 18:32:23 -0400 |
commit | 3446d4bb93b4d8c7c5b667dd0271669f012fb166 (patch) | |
tree | 26018a7591d80c087d1619dd805eda272299e26f /drivers/mfd/t7l66xb.c | |
parent | 47c10edd715d420cabd8622a4a458e9ac755b24d (diff) |
mfd: 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: Samuel Ortiz <sameo@openedhand.com>
Diffstat (limited to 'drivers/mfd/t7l66xb.c')
-rw-r--r-- | drivers/mfd/t7l66xb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mfd/t7l66xb.c b/drivers/mfd/t7l66xb.c index 9f7024c0f8ec..e9f4323dd2cb 100644 --- a/drivers/mfd/t7l66xb.c +++ b/drivers/mfd/t7l66xb.c | |||
@@ -108,7 +108,7 @@ static int t7l66xb_mmc_disable(struct platform_device *mmc) | |||
108 | 108 | ||
109 | /*--------------------------------------------------------------------------*/ | 109 | /*--------------------------------------------------------------------------*/ |
110 | 110 | ||
111 | const static struct resource t7l66xb_mmc_resources[] = { | 111 | static const struct resource t7l66xb_mmc_resources[] = { |
112 | { | 112 | { |
113 | .start = 0x800, | 113 | .start = 0x800, |
114 | .end = 0x9ff, | 114 | .end = 0x9ff, |
@@ -126,7 +126,7 @@ const static struct resource t7l66xb_mmc_resources[] = { | |||
126 | }, | 126 | }, |
127 | }; | 127 | }; |
128 | 128 | ||
129 | const static struct resource t7l66xb_nand_resources[] = { | 129 | static const struct resource t7l66xb_nand_resources[] = { |
130 | { | 130 | { |
131 | .start = 0xc00, | 131 | .start = 0xc00, |
132 | .end = 0xc07, | 132 | .end = 0xc07, |