diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2009-12-23 15:53:14 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-02-26 21:10:33 +0300 |
commit | f0ecba96e76295792a0b1ee2e03b505562e7b9f3 (patch) | |
tree | 066485bc36d2ce3e5dd8e92cc8c5aac8b6b00d38 /drivers/media/video/gspca/m5602/m5602_ov7660.h | |
parent | 9d68e8de9f8ab14077dd8d3c6ed9087ea61544a6 (diff) | |
download | linux-f0ecba96e76295792a0b1ee2e03b505562e7b9f3.tar.xz |
V4L/DVB (13952): gspca: 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>
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/gspca/m5602/m5602_ov7660.h')
-rw-r--r-- | drivers/media/video/gspca/m5602/m5602_ov7660.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/gspca/m5602/m5602_ov7660.h b/drivers/media/video/gspca/m5602/m5602_ov7660.h index f5588ebe667c..4d9dcf29da2e 100644 --- a/drivers/media/video/gspca/m5602/m5602_ov7660.h +++ b/drivers/media/video/gspca/m5602/m5602_ov7660.h @@ -94,7 +94,7 @@ int ov7660_start(struct sd *sd); int ov7660_stop(struct sd *sd); void ov7660_disconnect(struct sd *sd); -const static struct m5602_sensor ov7660 = { +static const struct m5602_sensor ov7660 = { .name = "ov7660", .i2c_slave_id = 0x42, .i2c_regW = 1, |