diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/dvb/b2c2/flexcop-i2c.c | 3 | ||||
-rw-r--r-- | drivers/media/dvb/dm1105/dm1105.c | 1 | ||||
-rw-r--r-- | drivers/media/dvb/dvb-usb/af9015.c | 5 | ||||
-rw-r--r-- | drivers/media/dvb/dvb-usb/dvb-usb-i2c.c | 1 | ||||
-rw-r--r-- | drivers/media/dvb/frontends/cx24123.c | 1 | ||||
-rw-r--r-- | drivers/media/dvb/frontends/dibx000_common.c | 1 | ||||
-rw-r--r-- | drivers/media/dvb/frontends/s5h1420.c | 1 | ||||
-rw-r--r-- | drivers/media/dvb/mantis/mantis_i2c.c | 1 | ||||
-rw-r--r-- | drivers/media/dvb/ngene/ngene-i2c.c | 1 | ||||
-rw-r--r-- | drivers/media/dvb/pluto2/pluto2.c | 1 | ||||
-rw-r--r-- | drivers/media/dvb/pt1/pt1.c | 1 | ||||
-rw-r--r-- | drivers/media/dvb/ttpci/av7110.c | 1 | ||||
-rw-r--r-- | drivers/media/dvb/ttpci/budget-core.c | 2 | ||||
-rw-r--r-- | drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c | 1 | ||||
-rw-r--r-- | drivers/media/video/cx88/cx88-vp3054-i2c.c | 2 |
15 files changed, 0 insertions, 23 deletions
diff --git a/drivers/media/dvb/b2c2/flexcop-i2c.c b/drivers/media/dvb/b2c2/flexcop-i2c.c index fd1df2352764..965d5eb33752 100644 --- a/drivers/media/dvb/b2c2/flexcop-i2c.c +++ b/drivers/media/dvb/b2c2/flexcop-i2c.c | |||
@@ -245,9 +245,6 @@ int flexcop_i2c_init(struct flexcop_device *fc) | |||
245 | i2c_set_adapdata(&fc->fc_i2c_adap[1].i2c_adap, &fc->fc_i2c_adap[1]); | 245 | i2c_set_adapdata(&fc->fc_i2c_adap[1].i2c_adap, &fc->fc_i2c_adap[1]); |
246 | i2c_set_adapdata(&fc->fc_i2c_adap[2].i2c_adap, &fc->fc_i2c_adap[2]); | 246 | i2c_set_adapdata(&fc->fc_i2c_adap[2].i2c_adap, &fc->fc_i2c_adap[2]); |
247 | 247 | ||
248 | fc->fc_i2c_adap[0].i2c_adap.class = | ||
249 | fc->fc_i2c_adap[1].i2c_adap.class = | ||
250 | fc->fc_i2c_adap[2].i2c_adap.class = I2C_CLASS_TV_DIGITAL; | ||
251 | fc->fc_i2c_adap[0].i2c_adap.algo = | 248 | fc->fc_i2c_adap[0].i2c_adap.algo = |
252 | fc->fc_i2c_adap[1].i2c_adap.algo = | 249 | fc->fc_i2c_adap[1].i2c_adap.algo = |
253 | fc->fc_i2c_adap[2].i2c_adap.algo = &flexcop_algo; | 250 | fc->fc_i2c_adap[2].i2c_adap.algo = &flexcop_algo; |
diff --git a/drivers/media/dvb/dm1105/dm1105.c b/drivers/media/dvb/dm1105/dm1105.c index bca07c0bcd01..5d404f1bf036 100644 --- a/drivers/media/dvb/dm1105/dm1105.c +++ b/drivers/media/dvb/dm1105/dm1105.c | |||
@@ -862,7 +862,6 @@ static int __devinit dm1105_probe(struct pci_dev *pdev, | |||
862 | i2c_set_adapdata(&dev->i2c_adap, dev); | 862 | i2c_set_adapdata(&dev->i2c_adap, dev); |
863 | strcpy(dev->i2c_adap.name, DRIVER_NAME); | 863 | strcpy(dev->i2c_adap.name, DRIVER_NAME); |
864 | dev->i2c_adap.owner = THIS_MODULE; | 864 | dev->i2c_adap.owner = THIS_MODULE; |
865 | dev->i2c_adap.class = I2C_CLASS_TV_DIGITAL; | ||
866 | dev->i2c_adap.dev.parent = &pdev->dev; | 865 | dev->i2c_adap.dev.parent = &pdev->dev; |
867 | dev->i2c_adap.algo = &dm1105_algo; | 866 | dev->i2c_adap.algo = &dm1105_algo; |
868 | dev->i2c_adap.algo_data = dev; | 867 | dev->i2c_adap.algo_data = dev; |
diff --git a/drivers/media/dvb/dvb-usb/af9015.c b/drivers/media/dvb/dvb-usb/af9015.c index 63ba76bc2339..759cbf81a4d3 100644 --- a/drivers/media/dvb/dvb-usb/af9015.c +++ b/drivers/media/dvb/dvb-usb/af9015.c | |||
@@ -1083,11 +1083,6 @@ static int af9015_i2c_init(struct dvb_usb_device *d) | |||
1083 | 1083 | ||
1084 | strncpy(state->i2c_adap.name, d->desc->name, | 1084 | strncpy(state->i2c_adap.name, d->desc->name, |
1085 | sizeof(state->i2c_adap.name)); | 1085 | sizeof(state->i2c_adap.name)); |
1086 | #ifdef I2C_ADAP_CLASS_TV_DIGITAL | ||
1087 | state->i2c_adap.class = I2C_ADAP_CLASS_TV_DIGITAL, | ||
1088 | #else | ||
1089 | state->i2c_adap.class = I2C_CLASS_TV_DIGITAL, | ||
1090 | #endif | ||
1091 | state->i2c_adap.algo = d->props.i2c_algo; | 1086 | state->i2c_adap.algo = d->props.i2c_algo; |
1092 | state->i2c_adap.algo_data = NULL; | 1087 | state->i2c_adap.algo_data = NULL; |
1093 | state->i2c_adap.dev.parent = &d->udev->dev; | 1088 | state->i2c_adap.dev.parent = &d->udev->dev; |
diff --git a/drivers/media/dvb/dvb-usb/dvb-usb-i2c.c b/drivers/media/dvb/dvb-usb/dvb-usb-i2c.c index cead089bbb4f..88e4a62abc44 100644 --- a/drivers/media/dvb/dvb-usb/dvb-usb-i2c.c +++ b/drivers/media/dvb/dvb-usb/dvb-usb-i2c.c | |||
@@ -20,7 +20,6 @@ int dvb_usb_i2c_init(struct dvb_usb_device *d) | |||
20 | } | 20 | } |
21 | 21 | ||
22 | strlcpy(d->i2c_adap.name, d->desc->name, sizeof(d->i2c_adap.name)); | 22 | strlcpy(d->i2c_adap.name, d->desc->name, sizeof(d->i2c_adap.name)); |
23 | d->i2c_adap.class = I2C_CLASS_TV_DIGITAL, | ||
24 | d->i2c_adap.algo = d->props.i2c_algo; | 23 | d->i2c_adap.algo = d->props.i2c_algo; |
25 | d->i2c_adap.algo_data = NULL; | 24 | d->i2c_adap.algo_data = NULL; |
26 | d->i2c_adap.dev.parent = &d->udev->dev; | 25 | d->i2c_adap.dev.parent = &d->udev->dev; |
diff --git a/drivers/media/dvb/frontends/cx24123.c b/drivers/media/dvb/frontends/cx24123.c index d8f921b6fafd..fad6a990a39b 100644 --- a/drivers/media/dvb/frontends/cx24123.c +++ b/drivers/media/dvb/frontends/cx24123.c | |||
@@ -1108,7 +1108,6 @@ struct dvb_frontend *cx24123_attach(const struct cx24123_config *config, | |||
1108 | 1108 | ||
1109 | strlcpy(state->tuner_i2c_adapter.name, "CX24123 tuner I2C bus", | 1109 | strlcpy(state->tuner_i2c_adapter.name, "CX24123 tuner I2C bus", |
1110 | sizeof(state->tuner_i2c_adapter.name)); | 1110 | sizeof(state->tuner_i2c_adapter.name)); |
1111 | state->tuner_i2c_adapter.class = I2C_CLASS_TV_DIGITAL, | ||
1112 | state->tuner_i2c_adapter.algo = &cx24123_tuner_i2c_algo; | 1111 | state->tuner_i2c_adapter.algo = &cx24123_tuner_i2c_algo; |
1113 | state->tuner_i2c_adapter.algo_data = NULL; | 1112 | state->tuner_i2c_adapter.algo_data = NULL; |
1114 | i2c_set_adapdata(&state->tuner_i2c_adapter, state); | 1113 | i2c_set_adapdata(&state->tuner_i2c_adapter, state); |
diff --git a/drivers/media/dvb/frontends/dibx000_common.c b/drivers/media/dvb/frontends/dibx000_common.c index 980e02f1575e..a4991026254d 100644 --- a/drivers/media/dvb/frontends/dibx000_common.c +++ b/drivers/media/dvb/frontends/dibx000_common.c | |||
@@ -130,7 +130,6 @@ static int i2c_adapter_init(struct i2c_adapter *i2c_adap, | |||
130 | struct dibx000_i2c_master *mst) | 130 | struct dibx000_i2c_master *mst) |
131 | { | 131 | { |
132 | strncpy(i2c_adap->name, name, sizeof(i2c_adap->name)); | 132 | strncpy(i2c_adap->name, name, sizeof(i2c_adap->name)); |
133 | i2c_adap->class = I2C_CLASS_TV_DIGITAL, i2c_adap->algo = algo; | ||
134 | i2c_adap->algo_data = NULL; | 133 | i2c_adap->algo_data = NULL; |
135 | i2c_set_adapdata(i2c_adap, mst); | 134 | i2c_set_adapdata(i2c_adap, mst); |
136 | if (i2c_add_adapter(i2c_adap) < 0) | 135 | if (i2c_add_adapter(i2c_adap) < 0) |
diff --git a/drivers/media/dvb/frontends/s5h1420.c b/drivers/media/dvb/frontends/s5h1420.c index 2e9fd2893ede..e87b747ea99c 100644 --- a/drivers/media/dvb/frontends/s5h1420.c +++ b/drivers/media/dvb/frontends/s5h1420.c | |||
@@ -920,7 +920,6 @@ struct dvb_frontend *s5h1420_attach(const struct s5h1420_config *config, | |||
920 | /* create tuner i2c adapter */ | 920 | /* create tuner i2c adapter */ |
921 | strlcpy(state->tuner_i2c_adapter.name, "S5H1420-PN1010 tuner I2C bus", | 921 | strlcpy(state->tuner_i2c_adapter.name, "S5H1420-PN1010 tuner I2C bus", |
922 | sizeof(state->tuner_i2c_adapter.name)); | 922 | sizeof(state->tuner_i2c_adapter.name)); |
923 | state->tuner_i2c_adapter.class = I2C_CLASS_TV_DIGITAL, | ||
924 | state->tuner_i2c_adapter.algo = &s5h1420_tuner_i2c_algo; | 923 | state->tuner_i2c_adapter.algo = &s5h1420_tuner_i2c_algo; |
925 | state->tuner_i2c_adapter.algo_data = NULL; | 924 | state->tuner_i2c_adapter.algo_data = NULL; |
926 | i2c_set_adapdata(&state->tuner_i2c_adapter, state); | 925 | i2c_set_adapdata(&state->tuner_i2c_adapter, state); |
diff --git a/drivers/media/dvb/mantis/mantis_i2c.c b/drivers/media/dvb/mantis/mantis_i2c.c index 7870bcf9689a..e7794517fe26 100644 --- a/drivers/media/dvb/mantis/mantis_i2c.c +++ b/drivers/media/dvb/mantis/mantis_i2c.c | |||
@@ -229,7 +229,6 @@ int __devinit mantis_i2c_init(struct mantis_pci *mantis) | |||
229 | i2c_set_adapdata(i2c_adapter, mantis); | 229 | i2c_set_adapdata(i2c_adapter, mantis); |
230 | 230 | ||
231 | i2c_adapter->owner = THIS_MODULE; | 231 | i2c_adapter->owner = THIS_MODULE; |
232 | i2c_adapter->class = I2C_CLASS_TV_DIGITAL; | ||
233 | i2c_adapter->algo = &mantis_algo; | 232 | i2c_adapter->algo = &mantis_algo; |
234 | i2c_adapter->algo_data = NULL; | 233 | i2c_adapter->algo_data = NULL; |
235 | i2c_adapter->timeout = 500; | 234 | i2c_adapter->timeout = 500; |
diff --git a/drivers/media/dvb/ngene/ngene-i2c.c b/drivers/media/dvb/ngene/ngene-i2c.c index 38074e9cbb6d..c3ae956714e7 100644 --- a/drivers/media/dvb/ngene/ngene-i2c.c +++ b/drivers/media/dvb/ngene/ngene-i2c.c | |||
@@ -165,7 +165,6 @@ int ngene_i2c_init(struct ngene *dev, int dev_nr) | |||
165 | struct i2c_adapter *adap = &(dev->channel[dev_nr].i2c_adapter); | 165 | struct i2c_adapter *adap = &(dev->channel[dev_nr].i2c_adapter); |
166 | 166 | ||
167 | i2c_set_adapdata(adap, &(dev->channel[dev_nr])); | 167 | i2c_set_adapdata(adap, &(dev->channel[dev_nr])); |
168 | adap->class = I2C_CLASS_TV_DIGITAL; | ||
169 | 168 | ||
170 | strcpy(adap->name, "nGene"); | 169 | strcpy(adap->name, "nGene"); |
171 | 170 | ||
diff --git a/drivers/media/dvb/pluto2/pluto2.c b/drivers/media/dvb/pluto2/pluto2.c index 1c798219dc7c..6ca6713d527a 100644 --- a/drivers/media/dvb/pluto2/pluto2.c +++ b/drivers/media/dvb/pluto2/pluto2.c | |||
@@ -647,7 +647,6 @@ static int __devinit pluto2_probe(struct pci_dev *pdev, | |||
647 | i2c_set_adapdata(&pluto->i2c_adap, pluto); | 647 | i2c_set_adapdata(&pluto->i2c_adap, pluto); |
648 | strcpy(pluto->i2c_adap.name, DRIVER_NAME); | 648 | strcpy(pluto->i2c_adap.name, DRIVER_NAME); |
649 | pluto->i2c_adap.owner = THIS_MODULE; | 649 | pluto->i2c_adap.owner = THIS_MODULE; |
650 | pluto->i2c_adap.class = I2C_CLASS_TV_DIGITAL; | ||
651 | pluto->i2c_adap.dev.parent = &pdev->dev; | 650 | pluto->i2c_adap.dev.parent = &pdev->dev; |
652 | pluto->i2c_adap.algo_data = &pluto->i2c_bit; | 651 | pluto->i2c_adap.algo_data = &pluto->i2c_bit; |
653 | pluto->i2c_bit.data = pluto; | 652 | pluto->i2c_bit.data = pluto; |
diff --git a/drivers/media/dvb/pt1/pt1.c b/drivers/media/dvb/pt1/pt1.c index 69ad94934ec2..0486919c1d0f 100644 --- a/drivers/media/dvb/pt1/pt1.c +++ b/drivers/media/dvb/pt1/pt1.c | |||
@@ -1087,7 +1087,6 @@ pt1_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1087 | pt1_update_power(pt1); | 1087 | pt1_update_power(pt1); |
1088 | 1088 | ||
1089 | i2c_adap = &pt1->i2c_adap; | 1089 | i2c_adap = &pt1->i2c_adap; |
1090 | i2c_adap->class = I2C_CLASS_TV_DIGITAL; | ||
1091 | i2c_adap->algo = &pt1_i2c_algo; | 1090 | i2c_adap->algo = &pt1_i2c_algo; |
1092 | i2c_adap->algo_data = NULL; | 1091 | i2c_adap->algo_data = NULL; |
1093 | i2c_adap->dev.parent = &pdev->dev; | 1092 | i2c_adap->dev.parent = &pdev->dev; |
diff --git a/drivers/media/dvb/ttpci/av7110.c b/drivers/media/dvb/ttpci/av7110.c index a6be529eec5c..bc5683ef7f10 100644 --- a/drivers/media/dvb/ttpci/av7110.c +++ b/drivers/media/dvb/ttpci/av7110.c | |||
@@ -2476,7 +2476,6 @@ static int __devinit av7110_attach(struct saa7146_dev* dev, | |||
2476 | get recognized before the main driver is fully loaded */ | 2476 | get recognized before the main driver is fully loaded */ |
2477 | saa7146_write(dev, GPIO_CTRL, 0x500000); | 2477 | saa7146_write(dev, GPIO_CTRL, 0x500000); |
2478 | 2478 | ||
2479 | av7110->i2c_adap.class = I2C_CLASS_TV_DIGITAL; | ||
2480 | strlcpy(av7110->i2c_adap.name, pci_ext->ext_priv, sizeof(av7110->i2c_adap.name)); | 2479 | strlcpy(av7110->i2c_adap.name, pci_ext->ext_priv, sizeof(av7110->i2c_adap.name)); |
2481 | 2480 | ||
2482 | saa7146_i2c_adapter_prepare(dev, &av7110->i2c_adap, SAA7146_I2C_BUS_BIT_RATE_120); /* 275 kHz */ | 2481 | saa7146_i2c_adapter_prepare(dev, &av7110->i2c_adap, SAA7146_I2C_BUS_BIT_RATE_120); /* 275 kHz */ |
diff --git a/drivers/media/dvb/ttpci/budget-core.c b/drivers/media/dvb/ttpci/budget-core.c index ba18e56d5f11..847f6601d842 100644 --- a/drivers/media/dvb/ttpci/budget-core.c +++ b/drivers/media/dvb/ttpci/budget-core.c | |||
@@ -495,8 +495,6 @@ int ttpci_budget_init(struct budget *budget, struct saa7146_dev *dev, | |||
495 | if (bi->type != BUDGET_FS_ACTIVY) | 495 | if (bi->type != BUDGET_FS_ACTIVY) |
496 | saa7146_write(dev, GPIO_CTRL, 0x500000); /* GPIO 3 = 1 */ | 496 | saa7146_write(dev, GPIO_CTRL, 0x500000); /* GPIO 3 = 1 */ |
497 | 497 | ||
498 | budget->i2c_adap.class = I2C_CLASS_TV_DIGITAL; | ||
499 | |||
500 | strlcpy(budget->i2c_adap.name, budget->card->name, sizeof(budget->i2c_adap.name)); | 498 | strlcpy(budget->i2c_adap.name, budget->card->name, sizeof(budget->i2c_adap.name)); |
501 | 499 | ||
502 | saa7146_i2c_adapter_prepare(dev, &budget->i2c_adap, SAA7146_I2C_BUS_BIT_RATE_120); | 500 | saa7146_i2c_adapter_prepare(dev, &budget->i2c_adap, SAA7146_I2C_BUS_BIT_RATE_120); |
diff --git a/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c b/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c index 4a3f2b8ea37d..40625b26ac10 100644 --- a/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c +++ b/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c | |||
@@ -1694,7 +1694,6 @@ static int ttusb_probe(struct usb_interface *intf, const struct usb_device_id *i | |||
1694 | 1694 | ||
1695 | i2c_set_adapdata(&ttusb->i2c_adap, ttusb); | 1695 | i2c_set_adapdata(&ttusb->i2c_adap, ttusb); |
1696 | 1696 | ||
1697 | ttusb->i2c_adap.class = I2C_CLASS_TV_DIGITAL; | ||
1698 | ttusb->i2c_adap.algo = &ttusb_dec_algo; | 1697 | ttusb->i2c_adap.algo = &ttusb_dec_algo; |
1699 | ttusb->i2c_adap.algo_data = NULL; | 1698 | ttusb->i2c_adap.algo_data = NULL; |
1700 | ttusb->i2c_adap.dev.parent = &udev->dev; | 1699 | ttusb->i2c_adap.dev.parent = &udev->dev; |
diff --git a/drivers/media/video/cx88/cx88-vp3054-i2c.c b/drivers/media/video/cx88/cx88-vp3054-i2c.c index 794f2932b755..ec5476d8b10b 100644 --- a/drivers/media/video/cx88/cx88-vp3054-i2c.c +++ b/drivers/media/video/cx88/cx88-vp3054-i2c.c | |||
@@ -121,8 +121,6 @@ int vp3054_i2c_probe(struct cx8802_dev *dev) | |||
121 | memcpy(&vp3054_i2c->algo, &vp3054_i2c_algo_template, | 121 | memcpy(&vp3054_i2c->algo, &vp3054_i2c_algo_template, |
122 | sizeof(vp3054_i2c->algo)); | 122 | sizeof(vp3054_i2c->algo)); |
123 | 123 | ||
124 | vp3054_i2c->adap.class |= I2C_CLASS_TV_DIGITAL; | ||
125 | |||
126 | vp3054_i2c->adap.dev.parent = &dev->pci->dev; | 124 | vp3054_i2c->adap.dev.parent = &dev->pci->dev; |
127 | strlcpy(vp3054_i2c->adap.name, core->name, | 125 | strlcpy(vp3054_i2c->adap.name, core->name, |
128 | sizeof(vp3054_i2c->adap.name)); | 126 | sizeof(vp3054_i2c->adap.name)); |