Commit f4372beb authored by Michael Krufky's avatar Michael Krufky Committed by Linus Torvalds

[PATCH] v4l: 869: iso c90 forbids mixed declarations and code

- ISO C90 forbids mixed declarations and code
Signed-off-by: default avatarMichael Krufky <mkrufky@m1k.net>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent fde6d31e
...@@ -299,7 +299,7 @@ static int tuner_stereo(struct i2c_client *c) ...@@ -299,7 +299,7 @@ static int tuner_stereo(struct i2c_client *c)
static void default_set_tv_freq(struct i2c_client *c, unsigned int freq) static void default_set_tv_freq(struct i2c_client *c, unsigned int freq)
{ {
struct tuner *t = i2c_get_clientdata(c); struct tuner *t = i2c_get_clientdata(c);
u8 config; u8 config, tuneraddr;
u16 div; u16 div;
struct tunertype *tun; struct tunertype *tun;
unsigned char buffer[4]; unsigned char buffer[4];
...@@ -393,7 +393,6 @@ static void default_set_tv_freq(struct i2c_client *c, unsigned int freq) ...@@ -393,7 +393,6 @@ static void default_set_tv_freq(struct i2c_client *c, unsigned int freq)
buffer[1] = 0x04; buffer[1] = 0x04;
} }
/* set to the correct mode (analog or digital) */ /* set to the correct mode (analog or digital) */
u8 tuneraddr;
tuneraddr = c->addr; tuneraddr = c->addr;
c->addr = 0x0a; c->addr = 0x0a;
if (2 != (rc = i2c_master_send(c,&buffer[0],2))) if (2 != (rc = i2c_master_send(c,&buffer[0],2)))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment