diff options
Diffstat (limited to 'drivers/media/video/tuner-3036.c')
-rw-r--r-- | drivers/media/video/tuner-3036.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/drivers/media/video/tuner-3036.c b/drivers/media/video/tuner-3036.c index 6b20aa902a8f..bedb15e2f233 100644 --- a/drivers/media/video/tuner-3036.c +++ b/drivers/media/video/tuner-3036.c | |||
@@ -34,19 +34,16 @@ static int this_adap; | |||
34 | static struct i2c_client client_template; | 34 | static struct i2c_client client_template; |
35 | 35 | ||
36 | /* Addresses to scan */ | 36 | /* Addresses to scan */ |
37 | static unsigned short normal_i2c[] = {I2C_CLIENT_END}; | 37 | static unsigned short normal_i2c[] = { 0x60, 0x61, I2C_CLIENT_END }; |
38 | static unsigned short normal_i2c_range[] = {0x60, 0x61, I2C_CLIENT_END}; | ||
39 | static unsigned short probe[2] = { I2C_CLIENT_END, I2C_CLIENT_END }; | 38 | static unsigned short probe[2] = { I2C_CLIENT_END, I2C_CLIENT_END }; |
40 | static unsigned short probe_range[2] = { I2C_CLIENT_END, I2C_CLIENT_END }; | ||
41 | static unsigned short ignore[2] = { I2C_CLIENT_END, I2C_CLIENT_END }; | 39 | static unsigned short ignore[2] = { I2C_CLIENT_END, I2C_CLIENT_END }; |
42 | static unsigned short ignore_range[2] = { I2C_CLIENT_END, I2C_CLIENT_END }; | ||
43 | static unsigned short force[2] = { I2C_CLIENT_END, I2C_CLIENT_END }; | 40 | static unsigned short force[2] = { I2C_CLIENT_END, I2C_CLIENT_END }; |
44 | 41 | ||
45 | static struct i2c_client_address_data addr_data = { | 42 | static struct i2c_client_address_data addr_data = { |
46 | normal_i2c, normal_i2c_range, | 43 | .normal_i2c = normal_i2c, |
47 | probe, probe_range, | 44 | .probe = probe, |
48 | ignore, ignore_range, | 45 | .ignore = ignore, |
49 | force | 46 | .force = force, |
50 | }; | 47 | }; |
51 | 48 | ||
52 | /* ---------------------------------------------------------------------- */ | 49 | /* ---------------------------------------------------------------------- */ |