mirror of https://gitee.com/openkylin/linux.git
V4L/DVB (3380): TUV1236d: declare buffer as static const
Make buffer a static const Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
44fd06fa90
commit
b9ee9ad7cb
|
@ -1487,7 +1487,7 @@ void cx88_card_setup(struct cx88_core *core)
|
|||
if (0 == core->i2c_rc) {
|
||||
/* enable tuner */
|
||||
int i;
|
||||
u8 buffer [] = { 0x10,0x12,0x13,0x04,0x16,0x00,0x14,0x04,0x017,0x00 };
|
||||
static const u8 buffer [] = { 0x10,0x12,0x13,0x04,0x16,0x00,0x14,0x04,0x017,0x00 };
|
||||
core->i2c_client.addr = 0x0a;
|
||||
|
||||
for (i = 0; i < 5; i++)
|
||||
|
|
|
@ -3554,7 +3554,7 @@ int saa7134_board_init2(struct saa7134_dev *dev)
|
|||
{
|
||||
/* enable tuner */
|
||||
int i;
|
||||
u8 buffer [] = { 0x10,0x12,0x13,0x04,0x16,0x00,0x14,0x04,0x017,0x00 };
|
||||
static const u8 buffer [] = { 0x10,0x12,0x13,0x04,0x16,0x00,0x14,0x04,0x017,0x00 };
|
||||
dev->i2c_client.addr = 0x0a;
|
||||
for (i = 0; i < 5; i++)
|
||||
if (2 != i2c_master_send(&dev->i2c_client,&buffer[i*2],2))
|
||||
|
|
Loading…
Reference in New Issue