[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>
This commit is contained in:
Родитель
ce08131c42
Коммит
967a378305
|
@ -34,7 +34,7 @@
|
|||
#include "mantis_dvb.h"
|
||||
#include "hopper_vp3028.h"
|
||||
|
||||
struct zl10353_config hopper_vp3028_config = {
|
||||
static struct zl10353_config hopper_vp3028_config = {
|
||||
.demod_address = 0x0f,
|
||||
};
|
||||
|
||||
|
|
|
@ -127,7 +127,7 @@ struct mantis_pci {
|
|||
u32 last_block;
|
||||
u8 *buf_cpu;
|
||||
dma_addr_t buf_dma;
|
||||
u32 *risc_cpu;
|
||||
__le32 *risc_cpu;
|
||||
dma_addr_t risc_dma;
|
||||
|
||||
struct tasklet_struct tasklet;
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
#include "mantis_vp1033.h"
|
||||
#include "mantis_reg.h"
|
||||
|
||||
u8 lgtdqcs001f_inittab[] = {
|
||||
static u8 lgtdqcs001f_inittab[] = {
|
||||
0x01, 0x15,
|
||||
0x02, 0x30,
|
||||
0x03, 0x00,
|
||||
|
@ -150,7 +150,7 @@ static int lgtdqcs001f_set_symbol_rate(struct dvb_frontend *fe,
|
|||
return 0;
|
||||
}
|
||||
|
||||
struct stv0299_config lgtdqcs001f_config = {
|
||||
static struct stv0299_config lgtdqcs001f_config = {
|
||||
.demod_address = 0x68,
|
||||
.inittab = lgtdqcs001f_inittab,
|
||||
.mclk = 88000000UL,
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
#include "mantis_vp1034.h"
|
||||
#include "mantis_reg.h"
|
||||
|
||||
struct mb86a16_config vp1034_mb86a16_config = {
|
||||
static struct mb86a16_config vp1034_mb86a16_config = {
|
||||
.demod_address = 0x08,
|
||||
.set_voltage = vp1034_set_voltage,
|
||||
};
|
||||
|
|
|
@ -263,7 +263,7 @@ static const struct stb0899_s1_reg vp1041_stb0899_s1_init_3[] = {
|
|||
{ 0xffff , 0xff },
|
||||
};
|
||||
|
||||
struct stb0899_config vp1041_stb0899_config = {
|
||||
static struct stb0899_config vp1041_stb0899_config = {
|
||||
.init_dev = vp1041_stb0899_s1_init_1,
|
||||
.init_s2_demod = stb0899_s2_init_2,
|
||||
.init_s1_demod = vp1041_stb0899_s1_init_3,
|
||||
|
@ -300,7 +300,7 @@ struct stb0899_config vp1041_stb0899_config = {
|
|||
.tuner_set_rfsiggain = NULL,
|
||||
};
|
||||
|
||||
struct stb6100_config vp1041_stb6100_config = {
|
||||
static struct stb6100_config vp1041_stb6100_config = {
|
||||
.tuner_address = 0x60,
|
||||
.refclock = 27000000,
|
||||
};
|
||||
|
|
|
@ -37,12 +37,12 @@
|
|||
#define MANTIS_MODEL_NAME "VP-2033"
|
||||
#define MANTIS_DEV_TYPE "DVB-C"
|
||||
|
||||
struct tda1002x_config vp2033_tda1002x_cu1216_config = {
|
||||
static struct tda1002x_config vp2033_tda1002x_cu1216_config = {
|
||||
.demod_address = 0x18 >> 1,
|
||||
.invert = 1,
|
||||
};
|
||||
|
||||
struct tda10023_config vp2033_tda10023_cu1216_config = {
|
||||
static struct tda10023_config vp2033_tda10023_cu1216_config = {
|
||||
.demod_address = 0x18 >> 1,
|
||||
.invert = 1,
|
||||
};
|
||||
|
|
|
@ -37,12 +37,12 @@
|
|||
#define MANTIS_MODEL_NAME "VP-2040"
|
||||
#define MANTIS_DEV_TYPE "DVB-C"
|
||||
|
||||
struct tda1002x_config vp2040_tda1002x_cu1216_config = {
|
||||
static struct tda1002x_config vp2040_tda1002x_cu1216_config = {
|
||||
.demod_address = 0x18 >> 1,
|
||||
.invert = 1,
|
||||
};
|
||||
|
||||
struct tda10023_config vp2040_tda10023_cu1216_config = {
|
||||
static struct tda10023_config vp2040_tda10023_cu1216_config = {
|
||||
.demod_address = 0x18 >> 1,
|
||||
.invert = 1,
|
||||
};
|
||||
|
|
|
@ -35,11 +35,11 @@
|
|||
#include "mantis_dvb.h"
|
||||
#include "mantis_vp3030.h"
|
||||
|
||||
struct zl10353_config mantis_vp3030_config = {
|
||||
static struct zl10353_config mantis_vp3030_config = {
|
||||
.demod_address = 0x0f,
|
||||
};
|
||||
|
||||
struct tda665x_config env57h12d5_config = {
|
||||
static struct tda665x_config env57h12d5_config = {
|
||||
.name = "ENV57H12D5 (ET-50DT)",
|
||||
.addr = 0x60,
|
||||
.frequency_min = 47000000,
|
||||
|
|
Загрузка…
Ссылка в новой задаче