Commit 4a7d7351 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

media: dw2102: fix coding style issues

Use checkpatch --strict --in-place to cleanup most style issues.
Then, do some manual work to fix most of the remaining issues.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent efc3e49d
...@@ -36,7 +36,6 @@ ...@@ -36,7 +36,6 @@
/* Max transfer size done by I2C transfer functions */ /* Max transfer size done by I2C transfer functions */
#define MAX_XFER_SIZE 64 #define MAX_XFER_SIZE 64
#define DW210X_READ_MSG 0 #define DW210X_READ_MSG 0
#define DW210X_WRITE_MSG 1 #define DW210X_WRITE_MSG 1
...@@ -99,7 +98,6 @@ static int dw210x_op_rw(struct usb_device *dev, u8 request, u16 value, ...@@ -99,7 +98,6 @@ static int dw210x_op_rw(struct usb_device *dev, u8 request, u16 value,
if (!u8buf) if (!u8buf)
return -ENOMEM; return -ENOMEM;
if (flags == DW210X_WRITE_MSG) if (flags == DW210X_WRITE_MSG)
memcpy(u8buf, data, len); memcpy(u8buf, data, len);
ret = usb_control_msg(dev, pipe, request, request_type | USB_TYPE_VENDOR, ret = usb_control_msg(dev, pipe, request, request_type | USB_TYPE_VENDOR,
...@@ -446,10 +444,8 @@ static int dw2104_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[], i ...@@ -446,10 +444,8 @@ static int dw2104_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[], i
DW210X_READ_MSG); DW210X_READ_MSG);
memcpy(msg[j].buf, ibuf + 2, msg[j].len); memcpy(msg[j].buf, ibuf + 2, msg[j].len);
mdelay(10); mdelay(10);
} else if (((msg[j].buf[0] == 0xb0) && } else if (((msg[j].buf[0] == 0xb0) && (msg[j].addr == 0x68)) ||
(msg[j].addr == 0x68)) || ((msg[j].buf[0] == 0xf7) && (msg[j].addr == 0x55))) {
((msg[j].buf[0] == 0xf7) &&
(msg[j].addr == 0x55))) {
/* write firmware */ /* write firmware */
u8 obuf[19]; u8 obuf[19];
...@@ -488,7 +484,6 @@ static int dw2104_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[], i ...@@ -488,7 +484,6 @@ static int dw2104_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[], i
break; break;
} }
} }
} }
ret = num; ret = num;
...@@ -652,8 +647,7 @@ static int s6x0_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[], ...@@ -652,8 +647,7 @@ static int s6x0_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[],
DW210X_READ_MSG); DW210X_READ_MSG);
memcpy(msg[j].buf, ibuf, msg[j].len); memcpy(msg[j].buf, ibuf, msg[j].len);
break; break;
} else if ((msg[j].buf[0] == 0xb0) && } else if ((msg[j].buf[0] == 0xb0) && (msg[j].addr == 0x68)) {
(msg[j].addr == 0x68)) {
/* write firmware */ /* write firmware */
u8 obuf[19]; u8 obuf[19];
...@@ -687,9 +681,8 @@ static int s6x0_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[], ...@@ -687,9 +681,8 @@ static int s6x0_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[],
obuf[1] = (msg[j].addr << 1); obuf[1] = (msg[j].addr << 1);
memcpy(obuf + 2, msg[j].buf, msg[j].len); memcpy(obuf + 2, msg[j].buf, msg[j].len);
dw210x_op_rw(d->udev, dw210x_op_rw(d->udev,
le16_to_cpu(udev->descriptor.idProduct) == le16_to_cpu(udev->descriptor.idProduct) == 0x7500 ? 0x92 : 0x90,
0x7500 ? 0x92 : 0x90, 0, 0, 0, 0, obuf, msg[j].len + 2,
obuf, msg[j].len + 2,
DW210X_WRITE_MSG); DW210X_WRITE_MSG);
break; break;
} else { } else {
...@@ -763,8 +756,8 @@ static int su3000_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[], ...@@ -763,8 +756,8 @@ static int su3000_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[],
/* if the current write msg is followed by a another /* if the current write msg is followed by a another
* read msg to/from the same address * read msg to/from the same address
*/ */
if ((j+1 < num) && (msg[j+1].flags & I2C_M_RD) && if ((j + 1 < num) && (msg[j + 1].flags & I2C_M_RD) &&
(msg[j].addr == msg[j+1].addr)) { (msg[j].addr == msg[j + 1].addr)) {
/* join both i2c msgs to one usb read command */ /* join both i2c msgs to one usb read command */
if (4 + msg[j].len > sizeof(state->data)) { if (4 + msg[j].len > sizeof(state->data)) {
warn("i2c combined wr/rd: write len=%d is too big!\n", warn("i2c combined wr/rd: write len=%d is too big!\n",
...@@ -772,24 +765,24 @@ static int su3000_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[], ...@@ -772,24 +765,24 @@ static int su3000_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[],
num = -EOPNOTSUPP; num = -EOPNOTSUPP;
break; break;
} }
if (1 + msg[j+1].len > sizeof(state->data)) { if (1 + msg[j + 1].len > sizeof(state->data)) {
warn("i2c combined wr/rd: read len=%d is too big!\n", warn("i2c combined wr/rd: read len=%d is too big!\n",
msg[j+1].len); msg[j + 1].len);
num = -EOPNOTSUPP; num = -EOPNOTSUPP;
break; break;
} }
state->data[0] = 0x09; state->data[0] = 0x09;
state->data[1] = msg[j].len; state->data[1] = msg[j].len;
state->data[2] = msg[j+1].len; state->data[2] = msg[j + 1].len;
state->data[3] = msg[j].addr; state->data[3] = msg[j].addr;
memcpy(&state->data[4], msg[j].buf, msg[j].len); memcpy(&state->data[4], msg[j].buf, msg[j].len);
if (dvb_usb_generic_rw(d, state->data, msg[j].len + 4, if (dvb_usb_generic_rw(d, state->data, msg[j].len + 4,
state->data, msg[j+1].len + 1, 0) < 0) state->data, msg[j + 1].len + 1, 0) < 0)
err("i2c transfer failed."); err("i2c transfer failed.");
memcpy(msg[j+1].buf, &state->data[1], msg[j+1].len); memcpy(msg[j + 1].buf, &state->data[1], msg[j + 1].len);
j++; j++;
break; break;
} }
...@@ -888,11 +881,11 @@ static int dw210x_read_mac_address(struct dvb_usb_device *d, u8 mac[6]) ...@@ -888,11 +881,11 @@ static int dw210x_read_mac_address(struct dvb_usb_device *d, u8 mac[6])
u8 eeprom[256], eepromline[16]; u8 eeprom[256], eepromline[16];
for (i = 0; i < 256; i++) { for (i = 0; i < 256; i++) {
if (dw210x_op_rw(d->udev, 0xb6, 0xa0 , i, ibuf, 2, DW210X_READ_MSG) < 0) { if (dw210x_op_rw(d->udev, 0xb6, 0xa0, i, ibuf, 2, DW210X_READ_MSG) < 0) {
err("read eeprom failed."); err("read eeprom failed.");
return -EIO; return -EIO;
} else { } else {
eepromline[i%16] = ibuf[0]; eepromline[i % 16] = ibuf[0];
eeprom[i] = ibuf[0]; eeprom[i] = ibuf[0];
} }
if ((i % 16) == 15) { if ((i % 16) == 15) {
...@@ -999,7 +992,6 @@ static int su3000_read_mac_address(struct dvb_usb_device *d, u8 mac[6]) ...@@ -999,7 +992,6 @@ static int su3000_read_mac_address(struct dvb_usb_device *d, u8 mac[6])
.flags = I2C_M_RD, .flags = I2C_M_RD,
.buf = ibuf, .buf = ibuf,
.len = 1, .len = 1,
} }
}; };
...@@ -1037,6 +1029,7 @@ static int dw210x_set_voltage(struct dvb_frontend *fe, ...@@ -1037,6 +1029,7 @@ static int dw210x_set_voltage(struct dvb_frontend *fe,
}; };
struct dvb_usb_adapter *udev_adap = fe->dvb->priv; struct dvb_usb_adapter *udev_adap = fe->dvb->priv;
if (voltage == SEC_VOLTAGE_18) if (voltage == SEC_VOLTAGE_18)
msg.buf = command_18v; msg.buf = command_18v;
else if (voltage == SEC_VOLTAGE_13) else if (voltage == SEC_VOLTAGE_13)
...@@ -1241,7 +1234,7 @@ static int dw2104_frontend_attach(struct dvb_usb_adapter *d) ...@@ -1241,7 +1234,7 @@ static int dw2104_frontend_attach(struct dvb_usb_adapter *d)
if (demod_probe & 4) { if (demod_probe & 4) {
d->fe_adap[0].fe = dvb_attach(stv0900_attach, &dw2104a_stv0900_config, d->fe_adap[0].fe = dvb_attach(stv0900_attach, &dw2104a_stv0900_config,
&d->dev->i2c_adap, 0); &d->dev->i2c_adap, 0);
if (d->fe_adap[0].fe != NULL) { if (d->fe_adap[0].fe) {
if (dvb_attach(stb6100_attach, d->fe_adap[0].fe, if (dvb_attach(stb6100_attach, d->fe_adap[0].fe,
&dw2104a_stb6100_config, &dw2104a_stb6100_config,
&d->dev->i2c_adap)) { &d->dev->i2c_adap)) {
...@@ -1260,7 +1253,7 @@ static int dw2104_frontend_attach(struct dvb_usb_adapter *d) ...@@ -1260,7 +1253,7 @@ static int dw2104_frontend_attach(struct dvb_usb_adapter *d)
if (demod_probe & 2) { if (demod_probe & 2) {
d->fe_adap[0].fe = dvb_attach(stv0900_attach, &dw2104_stv0900_config, d->fe_adap[0].fe = dvb_attach(stv0900_attach, &dw2104_stv0900_config,
&d->dev->i2c_adap, 0); &d->dev->i2c_adap, 0);
if (d->fe_adap[0].fe != NULL) { if (d->fe_adap[0].fe) {
if (dvb_attach(stv6110_attach, d->fe_adap[0].fe, if (dvb_attach(stv6110_attach, d->fe_adap[0].fe,
&dw2104_stv6110_config, &dw2104_stv6110_config,
&d->dev->i2c_adap)) { &d->dev->i2c_adap)) {
...@@ -1274,7 +1267,7 @@ static int dw2104_frontend_attach(struct dvb_usb_adapter *d) ...@@ -1274,7 +1267,7 @@ static int dw2104_frontend_attach(struct dvb_usb_adapter *d)
if (demod_probe & 1) { if (demod_probe & 1) {
d->fe_adap[0].fe = dvb_attach(cx24116_attach, &dw2104_config, d->fe_adap[0].fe = dvb_attach(cx24116_attach, &dw2104_config,
&d->dev->i2c_adap); &d->dev->i2c_adap);
if (d->fe_adap[0].fe != NULL) { if (d->fe_adap[0].fe) {
d->fe_adap[0].fe->ops.set_voltage = dw210x_set_voltage; d->fe_adap[0].fe->ops.set_voltage = dw210x_set_voltage;
info("Attached cx24116!"); info("Attached cx24116!");
return 0; return 0;
...@@ -1283,7 +1276,7 @@ static int dw2104_frontend_attach(struct dvb_usb_adapter *d) ...@@ -1283,7 +1276,7 @@ static int dw2104_frontend_attach(struct dvb_usb_adapter *d)
d->fe_adap[0].fe = dvb_attach(ds3000_attach, &dw2104_ds3000_config, d->fe_adap[0].fe = dvb_attach(ds3000_attach, &dw2104_ds3000_config,
&d->dev->i2c_adap); &d->dev->i2c_adap);
if (d->fe_adap[0].fe != NULL) { if (d->fe_adap[0].fe) {
dvb_attach(ts2020_attach, d->fe_adap[0].fe, dvb_attach(ts2020_attach, d->fe_adap[0].fe,
&dw2104_ts2020_config, &d->dev->i2c_adap); &dw2104_ts2020_config, &d->dev->i2c_adap);
d->fe_adap[0].fe->ops.set_voltage = dw210x_set_voltage; d->fe_adap[0].fe->ops.set_voltage = dw210x_set_voltage;
...@@ -1304,7 +1297,7 @@ static int dw2102_frontend_attach(struct dvb_usb_adapter *d) ...@@ -1304,7 +1297,7 @@ static int dw2102_frontend_attach(struct dvb_usb_adapter *d)
/*dw2102_properties.adapter->tuner_attach = NULL;*/ /*dw2102_properties.adapter->tuner_attach = NULL;*/
d->fe_adap[0].fe = dvb_attach(si21xx_attach, &serit_sp1511lhb_config, d->fe_adap[0].fe = dvb_attach(si21xx_attach, &serit_sp1511lhb_config,
&d->dev->i2c_adap); &d->dev->i2c_adap);
if (d->fe_adap[0].fe != NULL) { if (d->fe_adap[0].fe) {
d->fe_adap[0].fe->ops.set_voltage = dw210x_set_voltage; d->fe_adap[0].fe->ops.set_voltage = dw210x_set_voltage;
info("Attached si21xx!"); info("Attached si21xx!");
return 0; return 0;
...@@ -1314,7 +1307,7 @@ static int dw2102_frontend_attach(struct dvb_usb_adapter *d) ...@@ -1314,7 +1307,7 @@ static int dw2102_frontend_attach(struct dvb_usb_adapter *d)
if (dw2102_properties.i2c_algo == &dw2102_earda_i2c_algo) { if (dw2102_properties.i2c_algo == &dw2102_earda_i2c_algo) {
d->fe_adap[0].fe = dvb_attach(stv0288_attach, &earda_config, d->fe_adap[0].fe = dvb_attach(stv0288_attach, &earda_config,
&d->dev->i2c_adap); &d->dev->i2c_adap);
if (d->fe_adap[0].fe != NULL) { if (d->fe_adap[0].fe) {
if (dvb_attach(stb6000_attach, d->fe_adap[0].fe, 0x61, if (dvb_attach(stb6000_attach, d->fe_adap[0].fe, 0x61,
&d->dev->i2c_adap)) { &d->dev->i2c_adap)) {
d->fe_adap[0].fe->ops.set_voltage = dw210x_set_voltage; d->fe_adap[0].fe->ops.set_voltage = dw210x_set_voltage;
...@@ -1328,7 +1321,7 @@ static int dw2102_frontend_attach(struct dvb_usb_adapter *d) ...@@ -1328,7 +1321,7 @@ static int dw2102_frontend_attach(struct dvb_usb_adapter *d)
/*dw2102_properties.adapter->tuner_attach = dw2102_tuner_attach;*/ /*dw2102_properties.adapter->tuner_attach = dw2102_tuner_attach;*/
d->fe_adap[0].fe = dvb_attach(stv0299_attach, &sharp_z0194a_config, d->fe_adap[0].fe = dvb_attach(stv0299_attach, &sharp_z0194a_config,
&d->dev->i2c_adap); &d->dev->i2c_adap);
if (d->fe_adap[0].fe != NULL) { if (d->fe_adap[0].fe) {
d->fe_adap[0].fe->ops.set_voltage = dw210x_set_voltage; d->fe_adap[0].fe->ops.set_voltage = dw210x_set_voltage;
info("Attached stv0299!"); info("Attached stv0299!");
return 0; return 0;
...@@ -1341,7 +1334,7 @@ static int dw3101_frontend_attach(struct dvb_usb_adapter *d) ...@@ -1341,7 +1334,7 @@ static int dw3101_frontend_attach(struct dvb_usb_adapter *d)
{ {
d->fe_adap[0].fe = dvb_attach(tda10023_attach, &dw3101_tda10023_config, d->fe_adap[0].fe = dvb_attach(tda10023_attach, &dw3101_tda10023_config,
&d->dev->i2c_adap, 0x48); &d->dev->i2c_adap, 0x48);
if (d->fe_adap[0].fe != NULL) { if (d->fe_adap[0].fe) {
info("Attached tda10023!"); info("Attached tda10023!");
return 0; return 0;
} }
...@@ -1352,7 +1345,7 @@ static int zl100313_frontend_attach(struct dvb_usb_adapter *d) ...@@ -1352,7 +1345,7 @@ static int zl100313_frontend_attach(struct dvb_usb_adapter *d)
{ {
d->fe_adap[0].fe = dvb_attach(mt312_attach, &zl313_config, d->fe_adap[0].fe = dvb_attach(mt312_attach, &zl313_config,
&d->dev->i2c_adap); &d->dev->i2c_adap);
if (d->fe_adap[0].fe != NULL) { if (d->fe_adap[0].fe) {
if (dvb_attach(zl10039_attach, d->fe_adap[0].fe, 0x60, if (dvb_attach(zl10039_attach, d->fe_adap[0].fe, 0x60,
&d->dev->i2c_adap)) { &d->dev->i2c_adap)) {
d->fe_adap[0].fe->ops.set_voltage = dw210x_set_voltage; d->fe_adap[0].fe->ops.set_voltage = dw210x_set_voltage;
...@@ -1371,7 +1364,7 @@ static int stv0288_frontend_attach(struct dvb_usb_adapter *d) ...@@ -1371,7 +1364,7 @@ static int stv0288_frontend_attach(struct dvb_usb_adapter *d)
d->fe_adap[0].fe = dvb_attach(stv0288_attach, &earda_config, d->fe_adap[0].fe = dvb_attach(stv0288_attach, &earda_config,
&d->dev->i2c_adap); &d->dev->i2c_adap);
if (d->fe_adap[0].fe == NULL) if (!d->fe_adap[0].fe)
return -EIO; return -EIO;
if (dvb_attach(stb6000_attach, d->fe_adap[0].fe, 0x61, &d->dev->i2c_adap) == NULL) if (dvb_attach(stb6000_attach, d->fe_adap[0].fe, 0x61, &d->dev->i2c_adap) == NULL)
...@@ -1384,7 +1377,6 @@ static int stv0288_frontend_attach(struct dvb_usb_adapter *d) ...@@ -1384,7 +1377,6 @@ static int stv0288_frontend_attach(struct dvb_usb_adapter *d)
info("Attached stv0288+stb6000!"); info("Attached stv0288+stb6000!");
return 0; return 0;
} }
static int ds3000_frontend_attach(struct dvb_usb_adapter *d) static int ds3000_frontend_attach(struct dvb_usb_adapter *d)
...@@ -1395,7 +1387,7 @@ static int ds3000_frontend_attach(struct dvb_usb_adapter *d) ...@@ -1395,7 +1387,7 @@ static int ds3000_frontend_attach(struct dvb_usb_adapter *d)
d->fe_adap[0].fe = dvb_attach(ds3000_attach, &s660_ds3000_config, d->fe_adap[0].fe = dvb_attach(ds3000_attach, &s660_ds3000_config,
&d->dev->i2c_adap); &d->dev->i2c_adap);
if (d->fe_adap[0].fe == NULL) if (!d->fe_adap[0].fe)
return -EIO; return -EIO;
dvb_attach(ts2020_attach, d->fe_adap[0].fe, &s660_ts2020_config, dvb_attach(ts2020_attach, d->fe_adap[0].fe, &s660_ts2020_config,
...@@ -1417,7 +1409,7 @@ static int prof_7500_frontend_attach(struct dvb_usb_adapter *d) ...@@ -1417,7 +1409,7 @@ static int prof_7500_frontend_attach(struct dvb_usb_adapter *d)
d->fe_adap[0].fe = dvb_attach(stv0900_attach, &prof_7500_stv0900_config, d->fe_adap[0].fe = dvb_attach(stv0900_attach, &prof_7500_stv0900_config,
&d->dev->i2c_adap, 0); &d->dev->i2c_adap, 0);
if (d->fe_adap[0].fe == NULL) if (!d->fe_adap[0].fe)
return -EIO; return -EIO;
d->fe_adap[0].fe->ops.set_voltage = dw210x_set_voltage; d->fe_adap[0].fe->ops.set_voltage = dw210x_set_voltage;
...@@ -1474,7 +1466,7 @@ static int su3000_frontend_attach(struct dvb_usb_adapter *adap) ...@@ -1474,7 +1466,7 @@ static int su3000_frontend_attach(struct dvb_usb_adapter *adap)
adap->fe_adap[0].fe = dvb_attach(ds3000_attach, &su3000_ds3000_config, adap->fe_adap[0].fe = dvb_attach(ds3000_attach, &su3000_ds3000_config,
&d->i2c_adap); &d->i2c_adap);
if (adap->fe_adap[0].fe == NULL) if (!adap->fe_adap[0].fe)
return -EIO; return -EIO;
if (dvb_attach(ts2020_attach, adap->fe_adap[0].fe, if (dvb_attach(ts2020_attach, adap->fe_adap[0].fe,
...@@ -1534,7 +1526,7 @@ static int t220_frontend_attach(struct dvb_usb_adapter *adap) ...@@ -1534,7 +1526,7 @@ static int t220_frontend_attach(struct dvb_usb_adapter *adap)
adap->fe_adap[0].fe = dvb_attach(cxd2820r_attach, &cxd2820r_config, adap->fe_adap[0].fe = dvb_attach(cxd2820r_attach, &cxd2820r_config,
&d->i2c_adap, NULL); &d->i2c_adap, NULL);
if (adap->fe_adap[0].fe != NULL) { if (adap->fe_adap[0].fe) {
if (dvb_attach(tda18271_attach, adap->fe_adap[0].fe, 0x60, if (dvb_attach(tda18271_attach, adap->fe_adap[0].fe, 0x60,
&d->i2c_adap, &tda18271_config)) { &d->i2c_adap, &tda18271_config)) {
info("Attached TDA18271HD/CXD2820R!"); info("Attached TDA18271HD/CXD2820R!");
...@@ -1564,7 +1556,7 @@ static int m88rs2000_frontend_attach(struct dvb_usb_adapter *adap) ...@@ -1564,7 +1556,7 @@ static int m88rs2000_frontend_attach(struct dvb_usb_adapter *adap)
&s421_m88rs2000_config, &s421_m88rs2000_config,
&d->i2c_adap); &d->i2c_adap);
if (adap->fe_adap[0].fe == NULL) if (!adap->fe_adap[0].fe)
return -EIO; return -EIO;
if (dvb_attach(ts2020_attach, adap->fe_adap[0].fe, if (dvb_attach(ts2020_attach, adap->fe_adap[0].fe,
...@@ -1907,10 +1899,10 @@ static int dw2102_load_firmware(struct usb_device *dev, ...@@ -1907,10 +1899,10 @@ static int dw2102_load_firmware(struct usb_device *dev,
dw210x_op_rw(dev, 0xa0, 0x7f92, 0, &reset, 1, DW210X_WRITE_MSG); dw210x_op_rw(dev, 0xa0, 0x7f92, 0, &reset, 1, DW210X_WRITE_MSG);
dw210x_op_rw(dev, 0xa0, 0xe600, 0, &reset, 1, DW210X_WRITE_MSG); dw210x_op_rw(dev, 0xa0, 0xe600, 0, &reset, 1, DW210X_WRITE_MSG);
if (p != NULL) { if (p) {
memcpy(p, fw->data, fw->size); memcpy(p, fw->data, fw->size);
for (i = 0; i < fw->size; i += 0x40) { for (i = 0; i < fw->size; i += 0x40) {
b = (u8 *) p + i; b = (u8 *)p + i;
if (dw210x_op_rw(dev, 0xa0, i, 0, b, 0x40, if (dw210x_op_rw(dev, 0xa0, i, 0, b, 0x40,
DW210X_WRITE_MSG) != 0x40) { DW210X_WRITE_MSG) != 0x40) {
err("error while transferring firmware"); err("error while transferring firmware");
...@@ -2617,7 +2609,6 @@ static int dw2102_probe(struct usb_interface *intf, ...@@ -2617,7 +2609,6 @@ static int dw2102_probe(struct usb_interface *intf,
THIS_MODULE, NULL, adapter_nr) && THIS_MODULE, NULL, adapter_nr) &&
dvb_usb_device_init(intf, &tt_s2_4600_properties, dvb_usb_device_init(intf, &tt_s2_4600_properties,
THIS_MODULE, NULL, adapter_nr))) { THIS_MODULE, NULL, adapter_nr))) {
return 0; return 0;
} }
......
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