diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2010-05-20 11:12:52 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@nokia.com> | 2010-08-03 08:18:45 -0400 |
commit | 5a1819e3a82b65454cbba818efe0528785c9fb6a (patch) | |
tree | af511fdd455189623c48466c2c1f8313cc827b88 /arch/arm | |
parent | 9fe6206f400646a2322096b56c59891d530e8d51 (diff) |
OMAP: DSS2: 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: Tomi Valkeinen <tomi.valkeinen@nokia.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/plat-omap/include/plat/display.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/plat-omap/include/plat/display.h b/arch/arm/plat-omap/include/plat/display.h index 1c529ce9dc11..fbbb966a994f 100644 --- a/arch/arm/plat-omap/include/plat/display.h +++ b/arch/arm/plat-omap/include/plat/display.h | |||
@@ -277,8 +277,8 @@ struct omap_video_timings { | |||
277 | * identify the mode, and does not actually use the configs | 277 | * identify the mode, and does not actually use the configs |
278 | * itself. However, the configs should be something that | 278 | * itself. However, the configs should be something that |
279 | * a normal monitor can also show */ | 279 | * a normal monitor can also show */ |
280 | const extern struct omap_video_timings omap_dss_pal_timings; | 280 | extern const struct omap_video_timings omap_dss_pal_timings; |
281 | const extern struct omap_video_timings omap_dss_ntsc_timings; | 281 | extern const struct omap_video_timings omap_dss_ntsc_timings; |
282 | #endif | 282 | #endif |
283 | 283 | ||
284 | struct omap_overlay_info { | 284 | struct omap_overlay_info { |