diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2009-02-09 16:06:49 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 11:42:48 -0400 |
commit | e23b290716ad9355d9f17b569c8c9e659ff68aa7 (patch) | |
tree | 758ac4c12ca52c9f2e915a5b1a43e3e71a161284 /drivers/media/video/gspca/t613.c | |
parent | 92e8c91bd2a0db4b129baf332344f564bdfca941 (diff) |
V4L/DVB (10628): V4L: 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.
Cc: Jean-Francois Moine <moinejf@free.fr>
Cc: Sakari Ailus <sakari.ailus@nokia.com>
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/gspca/t613.c')
-rw-r--r-- | drivers/media/video/gspca/t613.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/gspca/t613.c b/drivers/media/video/gspca/t613.c index 0a1f4efdc6ed..95c120a506d3 100644 --- a/drivers/media/video/gspca/t613.c +++ b/drivers/media/video/gspca/t613.c | |||
@@ -272,7 +272,7 @@ struct additional_sensor_data { | |||
272 | const u8 stream[4]; | 272 | const u8 stream[4]; |
273 | }; | 273 | }; |
274 | 274 | ||
275 | const static struct additional_sensor_data sensor_data[] = { | 275 | static const struct additional_sensor_data sensor_data[] = { |
276 | { /* OM6802 */ | 276 | { /* OM6802 */ |
277 | .data1 = | 277 | .data1 = |
278 | {0xc2, 0x28, 0x0f, 0x22, 0xcd, 0x27, 0x2c, 0x06, | 278 | {0xc2, 0x28, 0x0f, 0x22, 0xcd, 0x27, 0x2c, 0x06, |