diff options
Diffstat (limited to 'drivers/media/video/cx88/cx88-i2c.c')
-rw-r--r-- | drivers/media/video/cx88/cx88-i2c.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/media/video/cx88/cx88-i2c.c b/drivers/media/video/cx88/cx88-i2c.c index 761cebd40dbd..9790d412f192 100644 --- a/drivers/media/video/cx88/cx88-i2c.c +++ b/drivers/media/video/cx88/cx88-i2c.c | |||
@@ -3,7 +3,7 @@ | |||
3 | cx88-i2c.c -- all the i2c code is here | 3 | cx88-i2c.c -- all the i2c code is here |
4 | 4 | ||
5 | Copyright (C) 1996,97,98 Ralph Metzler (rjkm@thp.uni-koeln.de) | 5 | Copyright (C) 1996,97,98 Ralph Metzler (rjkm@thp.uni-koeln.de) |
6 | & Marcus Metzler (mocm@thp.uni-koeln.de) | 6 | & Marcus Metzler (mocm@thp.uni-koeln.de) |
7 | (c) 2002 Yurij Sysoev <yurij@naturesoft.net> | 7 | (c) 2002 Yurij Sysoev <yurij@naturesoft.net> |
8 | (c) 1999-2003 Gerd Knorr <kraxel@bytesex.org> | 8 | (c) 1999-2003 Gerd Knorr <kraxel@bytesex.org> |
9 | 9 | ||
@@ -90,7 +90,7 @@ static int cx8800_bit_getsda(void *data) | |||
90 | 90 | ||
91 | static int attach_inform(struct i2c_client *client) | 91 | static int attach_inform(struct i2c_client *client) |
92 | { | 92 | { |
93 | struct tuner_setup tun_setup; | 93 | struct tuner_setup tun_setup; |
94 | struct cx88_core *core = i2c_get_adapdata(client->adapter); | 94 | struct cx88_core *core = i2c_get_adapdata(client->adapter); |
95 | 95 | ||
96 | dprintk(1, "%s i2c attach [addr=0x%x,client=%s]\n", | 96 | dprintk(1, "%s i2c attach [addr=0x%x,client=%s]\n", |
@@ -98,7 +98,7 @@ static int attach_inform(struct i2c_client *client) | |||
98 | if (!client->driver->command) | 98 | if (!client->driver->command) |
99 | return 0; | 99 | return 0; |
100 | 100 | ||
101 | if (core->radio_type != UNSET) { | 101 | if (core->radio_type != UNSET) { |
102 | if ((core->radio_addr==ADDR_UNSET)||(core->radio_addr==client->addr)) { | 102 | if ((core->radio_addr==ADDR_UNSET)||(core->radio_addr==client->addr)) { |
103 | tun_setup.mode_mask = T_RADIO; | 103 | tun_setup.mode_mask = T_RADIO; |
104 | tun_setup.type = core->radio_type; | 104 | tun_setup.type = core->radio_type; |
@@ -106,8 +106,8 @@ static int attach_inform(struct i2c_client *client) | |||
106 | 106 | ||
107 | client->driver->command (client, TUNER_SET_TYPE_ADDR, &tun_setup); | 107 | client->driver->command (client, TUNER_SET_TYPE_ADDR, &tun_setup); |
108 | } | 108 | } |
109 | } | 109 | } |
110 | if (core->tuner_type != UNSET) { | 110 | if (core->tuner_type != UNSET) { |
111 | if ((core->tuner_addr==ADDR_UNSET)||(core->tuner_addr==client->addr)) { | 111 | if ((core->tuner_addr==ADDR_UNSET)||(core->tuner_addr==client->addr)) { |
112 | 112 | ||
113 | tun_setup.mode_mask = T_ANALOG_TV; | 113 | tun_setup.mode_mask = T_ANALOG_TV; |
@@ -116,7 +116,7 @@ static int attach_inform(struct i2c_client *client) | |||
116 | 116 | ||
117 | client->driver->command (client,TUNER_SET_TYPE_ADDR, &tun_setup); | 117 | client->driver->command (client,TUNER_SET_TYPE_ADDR, &tun_setup); |
118 | } | 118 | } |
119 | } | 119 | } |
120 | 120 | ||
121 | if (core->tda9887_conf) | 121 | if (core->tda9887_conf) |
122 | client->driver->command(client, TDA9887_SET_CONFIG, &core->tda9887_conf); | 122 | client->driver->command(client, TDA9887_SET_CONFIG, &core->tda9887_conf); |
@@ -159,7 +159,7 @@ static struct i2c_adapter cx8800_i2c_adap_template = { | |||
159 | }; | 159 | }; |
160 | 160 | ||
161 | static struct i2c_client cx8800_i2c_client_template = { | 161 | static struct i2c_client cx8800_i2c_client_template = { |
162 | .name = "cx88xx internal", | 162 | .name = "cx88xx internal", |
163 | }; | 163 | }; |
164 | 164 | ||
165 | static char *i2c_devs[128] = { | 165 | static char *i2c_devs[128] = { |
@@ -202,10 +202,10 @@ int cx88_i2c_init(struct cx88_core *core, struct pci_dev *pci) | |||
202 | 202 | ||
203 | core->i2c_adap.dev.parent = &pci->dev; | 203 | core->i2c_adap.dev.parent = &pci->dev; |
204 | strlcpy(core->i2c_adap.name,core->name,sizeof(core->i2c_adap.name)); | 204 | strlcpy(core->i2c_adap.name,core->name,sizeof(core->i2c_adap.name)); |
205 | core->i2c_algo.data = core; | 205 | core->i2c_algo.data = core; |
206 | i2c_set_adapdata(&core->i2c_adap,core); | 206 | i2c_set_adapdata(&core->i2c_adap,core); |
207 | core->i2c_adap.algo_data = &core->i2c_algo; | 207 | core->i2c_adap.algo_data = &core->i2c_algo; |
208 | core->i2c_client.adapter = &core->i2c_adap; | 208 | core->i2c_client.adapter = &core->i2c_adap; |
209 | 209 | ||
210 | cx8800_bit_setscl(core,1); | 210 | cx8800_bit_setscl(core,1); |
211 | cx8800_bit_setsda(core,1); | 211 | cx8800_bit_setsda(core,1); |