diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2014-08-20 17:26:40 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-09-03 08:38:44 -0400 |
commit | 967a37830573a1fa4b7bdb7ce203c7ea8a91e0c4 (patch) | |
tree | 216135a28a2710143701e4449b99dd6c246f3605 | |
parent | ce08131c42164a4be37e6bb7f34185ab48f6bba4 (diff) |
[media] mantis: fix sparse warnings
drivers/media/pci/mantis/hopper_vp3028.c:37:23: warning: symbol 'hopper_vp3028_config' was not declared. Should it be static?
drivers/media/pci/mantis/mantis_vp1033.c:38:4: warning: symbol 'lgtdqcs001f_inittab' was not declared. Should it be static?
drivers/media/pci/mantis/mantis_vp1033.c:153:23: warning: symbol 'lgtdqcs001f_config' was not declared. Should it be static?
drivers/media/pci/mantis/mantis_vp1034.c:39:23: warning: symbol 'vp1034_mb86a16_config' was not declared. Should it be static?
drivers/media/pci/mantis/mantis_vp1041.c:266:23: warning: symbol 'vp1041_stb0899_config' was not declared. Should it be static?
drivers/media/pci/mantis/mantis_vp1041.c:303:23: warning: symbol 'vp1041_stb6100_config' was not declared. Should it be static?
drivers/media/pci/mantis/mantis_vp2033.c:40:24: warning: symbol 'vp2033_tda1002x_cu1216_config' was not declared. Should it be static?
drivers/media/pci/mantis/mantis_vp2033.c:45:24: warning: symbol 'vp2033_tda10023_cu1216_config' was not declared. Should it be static?
drivers/media/pci/mantis/mantis_vp2040.c:40:24: warning: symbol 'vp2040_tda1002x_cu1216_config' was not declared. Should it be static?
drivers/media/pci/mantis/mantis_vp2040.c:45:24: warning: symbol 'vp2040_tda10023_cu1216_config' was not declared. Should it be static?
drivers/media/pci/mantis/mantis_vp3030.c:38:23: warning: symbol 'mantis_vp3030_config' was not declared. Should it be static?
drivers/media/pci/mantis/mantis_vp3030.c:42:23: warning: symbol 'env57h12d5_config' was not declared. Should it be static?
drivers/media/pci/mantis/mantis_dma.c:167:33: warning: incorrect type in assignment (different base types)
drivers/media/pci/mantis/mantis_dma.c:172:33: warning: incorrect type in assignment (different base types)
drivers/media/pci/mantis/mantis_dma.c:174:25: warning: incorrect type in assignment (different base types)
drivers/media/pci/mantis/mantis_dma.c:178:9: warning: incorrect type in assignment (different base types)
drivers/media/pci/mantis/mantis_dma.c:179:9: warning: incorrect type in assignment (different base types)
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r-- | drivers/media/pci/mantis/hopper_vp3028.c | 2 | ||||
-rw-r--r-- | drivers/media/pci/mantis/mantis_common.h | 2 | ||||
-rw-r--r-- | drivers/media/pci/mantis/mantis_vp1033.c | 4 | ||||
-rw-r--r-- | drivers/media/pci/mantis/mantis_vp1034.c | 2 | ||||
-rw-r--r-- | drivers/media/pci/mantis/mantis_vp1041.c | 4 | ||||
-rw-r--r-- | drivers/media/pci/mantis/mantis_vp2033.c | 4 | ||||
-rw-r--r-- | drivers/media/pci/mantis/mantis_vp2040.c | 4 | ||||
-rw-r--r-- | drivers/media/pci/mantis/mantis_vp3030.c | 4 |
8 files changed, 13 insertions, 13 deletions
diff --git a/drivers/media/pci/mantis/hopper_vp3028.c b/drivers/media/pci/mantis/hopper_vp3028.c index 68a29f8bdf73..1032db6bb789 100644 --- a/drivers/media/pci/mantis/hopper_vp3028.c +++ b/drivers/media/pci/mantis/hopper_vp3028.c | |||
@@ -34,7 +34,7 @@ | |||
34 | #include "mantis_dvb.h" | 34 | #include "mantis_dvb.h" |
35 | #include "hopper_vp3028.h" | 35 | #include "hopper_vp3028.h" |
36 | 36 | ||
37 | struct zl10353_config hopper_vp3028_config = { | 37 | static struct zl10353_config hopper_vp3028_config = { |
38 | .demod_address = 0x0f, | 38 | .demod_address = 0x0f, |
39 | }; | 39 | }; |
40 | 40 | ||
diff --git a/drivers/media/pci/mantis/mantis_common.h b/drivers/media/pci/mantis/mantis_common.h index f2410cf0a6bf..8ff448bb792d 100644 --- a/drivers/media/pci/mantis/mantis_common.h +++ b/drivers/media/pci/mantis/mantis_common.h | |||
@@ -127,7 +127,7 @@ struct mantis_pci { | |||
127 | u32 last_block; | 127 | u32 last_block; |
128 | u8 *buf_cpu; | 128 | u8 *buf_cpu; |
129 | dma_addr_t buf_dma; | 129 | dma_addr_t buf_dma; |
130 | u32 *risc_cpu; | 130 | __le32 *risc_cpu; |
131 | dma_addr_t risc_dma; | 131 | dma_addr_t risc_dma; |
132 | 132 | ||
133 | struct tasklet_struct tasklet; | 133 | struct tasklet_struct tasklet; |
diff --git a/drivers/media/pci/mantis/mantis_vp1033.c b/drivers/media/pci/mantis/mantis_vp1033.c index 115003e8d19d..12a6adb2bd7e 100644 --- a/drivers/media/pci/mantis/mantis_vp1033.c +++ b/drivers/media/pci/mantis/mantis_vp1033.c | |||
@@ -35,7 +35,7 @@ | |||
35 | #include "mantis_vp1033.h" | 35 | #include "mantis_vp1033.h" |
36 | #include "mantis_reg.h" | 36 | #include "mantis_reg.h" |
37 | 37 | ||
38 | u8 lgtdqcs001f_inittab[] = { | 38 | static u8 lgtdqcs001f_inittab[] = { |
39 | 0x01, 0x15, | 39 | 0x01, 0x15, |
40 | 0x02, 0x30, | 40 | 0x02, 0x30, |
41 | 0x03, 0x00, | 41 | 0x03, 0x00, |
@@ -150,7 +150,7 @@ static int lgtdqcs001f_set_symbol_rate(struct dvb_frontend *fe, | |||
150 | return 0; | 150 | return 0; |
151 | } | 151 | } |
152 | 152 | ||
153 | struct stv0299_config lgtdqcs001f_config = { | 153 | static struct stv0299_config lgtdqcs001f_config = { |
154 | .demod_address = 0x68, | 154 | .demod_address = 0x68, |
155 | .inittab = lgtdqcs001f_inittab, | 155 | .inittab = lgtdqcs001f_inittab, |
156 | .mclk = 88000000UL, | 156 | .mclk = 88000000UL, |
diff --git a/drivers/media/pci/mantis/mantis_vp1034.c b/drivers/media/pci/mantis/mantis_vp1034.c index 430ae84ce528..7c1bd167225c 100644 --- a/drivers/media/pci/mantis/mantis_vp1034.c +++ b/drivers/media/pci/mantis/mantis_vp1034.c | |||
@@ -36,7 +36,7 @@ | |||
36 | #include "mantis_vp1034.h" | 36 | #include "mantis_vp1034.h" |
37 | #include "mantis_reg.h" | 37 | #include "mantis_reg.h" |
38 | 38 | ||
39 | struct mb86a16_config vp1034_mb86a16_config = { | 39 | static struct mb86a16_config vp1034_mb86a16_config = { |
40 | .demod_address = 0x08, | 40 | .demod_address = 0x08, |
41 | .set_voltage = vp1034_set_voltage, | 41 | .set_voltage = vp1034_set_voltage, |
42 | }; | 42 | }; |
diff --git a/drivers/media/pci/mantis/mantis_vp1041.c b/drivers/media/pci/mantis/mantis_vp1041.c index 07a20748b707..7082fcbc94a1 100644 --- a/drivers/media/pci/mantis/mantis_vp1041.c +++ b/drivers/media/pci/mantis/mantis_vp1041.c | |||
@@ -263,7 +263,7 @@ static const struct stb0899_s1_reg vp1041_stb0899_s1_init_3[] = { | |||
263 | { 0xffff , 0xff }, | 263 | { 0xffff , 0xff }, |
264 | }; | 264 | }; |
265 | 265 | ||
266 | struct stb0899_config vp1041_stb0899_config = { | 266 | static struct stb0899_config vp1041_stb0899_config = { |
267 | .init_dev = vp1041_stb0899_s1_init_1, | 267 | .init_dev = vp1041_stb0899_s1_init_1, |
268 | .init_s2_demod = stb0899_s2_init_2, | 268 | .init_s2_demod = stb0899_s2_init_2, |
269 | .init_s1_demod = vp1041_stb0899_s1_init_3, | 269 | .init_s1_demod = vp1041_stb0899_s1_init_3, |
@@ -300,7 +300,7 @@ struct stb0899_config vp1041_stb0899_config = { | |||
300 | .tuner_set_rfsiggain = NULL, | 300 | .tuner_set_rfsiggain = NULL, |
301 | }; | 301 | }; |
302 | 302 | ||
303 | struct stb6100_config vp1041_stb6100_config = { | 303 | static struct stb6100_config vp1041_stb6100_config = { |
304 | .tuner_address = 0x60, | 304 | .tuner_address = 0x60, |
305 | .refclock = 27000000, | 305 | .refclock = 27000000, |
306 | }; | 306 | }; |
diff --git a/drivers/media/pci/mantis/mantis_vp2033.c b/drivers/media/pci/mantis/mantis_vp2033.c index 1ca6837fbe46..8d48b5abe04a 100644 --- a/drivers/media/pci/mantis/mantis_vp2033.c +++ b/drivers/media/pci/mantis/mantis_vp2033.c | |||
@@ -37,12 +37,12 @@ | |||
37 | #define MANTIS_MODEL_NAME "VP-2033" | 37 | #define MANTIS_MODEL_NAME "VP-2033" |
38 | #define MANTIS_DEV_TYPE "DVB-C" | 38 | #define MANTIS_DEV_TYPE "DVB-C" |
39 | 39 | ||
40 | struct tda1002x_config vp2033_tda1002x_cu1216_config = { | 40 | static struct tda1002x_config vp2033_tda1002x_cu1216_config = { |
41 | .demod_address = 0x18 >> 1, | 41 | .demod_address = 0x18 >> 1, |
42 | .invert = 1, | 42 | .invert = 1, |
43 | }; | 43 | }; |
44 | 44 | ||
45 | struct tda10023_config vp2033_tda10023_cu1216_config = { | 45 | static struct tda10023_config vp2033_tda10023_cu1216_config = { |
46 | .demod_address = 0x18 >> 1, | 46 | .demod_address = 0x18 >> 1, |
47 | .invert = 1, | 47 | .invert = 1, |
48 | }; | 48 | }; |
diff --git a/drivers/media/pci/mantis/mantis_vp2040.c b/drivers/media/pci/mantis/mantis_vp2040.c index d480741afd78..8dd17d7c0881 100644 --- a/drivers/media/pci/mantis/mantis_vp2040.c +++ b/drivers/media/pci/mantis/mantis_vp2040.c | |||
@@ -37,12 +37,12 @@ | |||
37 | #define MANTIS_MODEL_NAME "VP-2040" | 37 | #define MANTIS_MODEL_NAME "VP-2040" |
38 | #define MANTIS_DEV_TYPE "DVB-C" | 38 | #define MANTIS_DEV_TYPE "DVB-C" |
39 | 39 | ||
40 | struct tda1002x_config vp2040_tda1002x_cu1216_config = { | 40 | static struct tda1002x_config vp2040_tda1002x_cu1216_config = { |
41 | .demod_address = 0x18 >> 1, | 41 | .demod_address = 0x18 >> 1, |
42 | .invert = 1, | 42 | .invert = 1, |
43 | }; | 43 | }; |
44 | 44 | ||
45 | struct tda10023_config vp2040_tda10023_cu1216_config = { | 45 | static struct tda10023_config vp2040_tda10023_cu1216_config = { |
46 | .demod_address = 0x18 >> 1, | 46 | .demod_address = 0x18 >> 1, |
47 | .invert = 1, | 47 | .invert = 1, |
48 | }; | 48 | }; |
diff --git a/drivers/media/pci/mantis/mantis_vp3030.c b/drivers/media/pci/mantis/mantis_vp3030.c index c09308cd3ac6..5c1dd925bdd5 100644 --- a/drivers/media/pci/mantis/mantis_vp3030.c +++ b/drivers/media/pci/mantis/mantis_vp3030.c | |||
@@ -35,11 +35,11 @@ | |||
35 | #include "mantis_dvb.h" | 35 | #include "mantis_dvb.h" |
36 | #include "mantis_vp3030.h" | 36 | #include "mantis_vp3030.h" |
37 | 37 | ||
38 | struct zl10353_config mantis_vp3030_config = { | 38 | static struct zl10353_config mantis_vp3030_config = { |
39 | .demod_address = 0x0f, | 39 | .demod_address = 0x0f, |
40 | }; | 40 | }; |
41 | 41 | ||
42 | struct tda665x_config env57h12d5_config = { | 42 | static struct tda665x_config env57h12d5_config = { |
43 | .name = "ENV57H12D5 (ET-50DT)", | 43 | .name = "ENV57H12D5 (ET-50DT)", |
44 | .addr = 0x60, | 44 | .addr = 0x60, |
45 | .frequency_min = 47000000, | 45 | .frequency_min = 47000000, |