summaryrefslogtreecommitdiff
path: root/linux/drivers
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2009-04-26 13:03:29 +0000
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-04-26 13:03:29 +0000
commit174bab7f1cc3bfa7b54978080cbe82002b94adbf (patch)
tree8d8d1d8346242b0b795c14eac8a14f737df138f0 /linux/drivers
parent8336aa0dd9ebd561d8bd2bd866b37071d0d0c79a (diff)
downloadmediapointer-dvb-s2-174bab7f1cc3bfa7b54978080cbe82002b94adbf.tar.gz
mediapointer-dvb-s2-174bab7f1cc3bfa7b54978080cbe82002b94adbf.tar.bz2
firedtv: Storage class should be before const qualifier
From: Tobias Klauser <tklauser@distanz.ch> 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> Acked-by: Stefan Richter <stefanr@s5r6.in-berlin.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux/drivers')
-rw-r--r--linux/drivers/media/dvb/firewire/firedtv-rc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/firewire/firedtv-rc.c b/linux/drivers/media/dvb/firewire/firedtv-rc.c
index 46a6324d7..27bca2e28 100644
--- a/linux/drivers/media/dvb/firewire/firedtv-rc.c
+++ b/linux/drivers/media/dvb/firewire/firedtv-rc.c
@@ -18,7 +18,7 @@
#include "firedtv.h"
/* fixed table with older keycodes, geared towards MythTV */
-const static u16 oldtable[] = {
+static const u16 oldtable[] = {
/* code from device: 0x4501...0x451f */
@@ -62,7 +62,7 @@ const static u16 oldtable[] = {
};
/* user-modifiable table for a remote as sold in 2008 */
-const static u16 keytable[] = {
+static const u16 keytable[] = {
/* code from device: 0x0300...0x031f */