提交 230b27cd 编写于 作者: D Daniel Mack 提交者: Mauro Carvalho Chehab

V4L/DVB: drivers/media/dvb/dvb-usb/dib0700: CodingStyle fixes

Signed-off-by: NDaniel Mack <daniel@caiaq.de>
Signed-off-by: NDouglas Schilling Landgraf <dougsland@redhat.com>
Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
上级 8871c85d
...@@ -53,7 +53,7 @@ static int dib0700_ctrl_wr(struct dvb_usb_device *d, u8 *tx, u8 txlen) ...@@ -53,7 +53,7 @@ static int dib0700_ctrl_wr(struct dvb_usb_device *d, u8 *tx, u8 txlen)
int status; int status;
deb_data(">>> "); deb_data(">>> ");
debug_dump(tx,txlen,deb_data); debug_dump(tx, txlen, deb_data);
status = usb_control_msg(d->udev, usb_sndctrlpipe(d->udev,0), status = usb_control_msg(d->udev, usb_sndctrlpipe(d->udev,0),
tx[0], USB_TYPE_VENDOR | USB_DIR_OUT, 0, 0, tx, txlen, tx[0], USB_TYPE_VENDOR | USB_DIR_OUT, 0, 0, tx, txlen,
...@@ -98,7 +98,7 @@ int dib0700_ctrl_rd(struct dvb_usb_device *d, u8 *tx, u8 txlen, u8 *rx, u8 rxlen ...@@ -98,7 +98,7 @@ int dib0700_ctrl_rd(struct dvb_usb_device *d, u8 *tx, u8 txlen, u8 *rx, u8 rxlen
deb_info("ep 0 read error (status = %d)\n",status); deb_info("ep 0 read error (status = %d)\n",status);
deb_data("<<< "); deb_data("<<< ");
debug_dump(rx,rxlen,deb_data); debug_dump(rx, rxlen, deb_data);
return status; /* length in case of success */ return status; /* length in case of success */
} }
...@@ -106,7 +106,7 @@ int dib0700_ctrl_rd(struct dvb_usb_device *d, u8 *tx, u8 txlen, u8 *rx, u8 rxlen ...@@ -106,7 +106,7 @@ int dib0700_ctrl_rd(struct dvb_usb_device *d, u8 *tx, u8 txlen, u8 *rx, u8 rxlen
int dib0700_set_gpio(struct dvb_usb_device *d, enum dib07x0_gpios gpio, u8 gpio_dir, u8 gpio_val) int dib0700_set_gpio(struct dvb_usb_device *d, enum dib07x0_gpios gpio, u8 gpio_dir, u8 gpio_val)
{ {
u8 buf[3] = { REQUEST_SET_GPIO, gpio, ((gpio_dir & 0x01) << 7) | ((gpio_val & 0x01) << 6) }; u8 buf[3] = { REQUEST_SET_GPIO, gpio, ((gpio_dir & 0x01) << 7) | ((gpio_val & 0x01) << 6) };
return dib0700_ctrl_wr(d,buf,3); return dib0700_ctrl_wr(d, buf, sizeof(buf));
} }
static int dib0700_set_usb_xfer_len(struct dvb_usb_device *d, u16 nb_ts_packets) static int dib0700_set_usb_xfer_len(struct dvb_usb_device *d, u16 nb_ts_packets)
...@@ -117,16 +117,17 @@ static int dib0700_set_usb_xfer_len(struct dvb_usb_device *d, u16 nb_ts_packets) ...@@ -117,16 +117,17 @@ static int dib0700_set_usb_xfer_len(struct dvb_usb_device *d, u16 nb_ts_packets)
if (st->fw_version >= 0x10201) { if (st->fw_version >= 0x10201) {
b[0] = REQUEST_SET_USB_XFER_LEN; b[0] = REQUEST_SET_USB_XFER_LEN;
b[1] = (nb_ts_packets >> 8)&0xff; b[1] = (nb_ts_packets >> 8) & 0xff;
b[2] = nb_ts_packets & 0xff; b[2] = nb_ts_packets & 0xff;
deb_info("set the USB xfer len to %i Ts packet\n", nb_ts_packets); deb_info("set the USB xfer len to %i Ts packet\n", nb_ts_packets);
ret = dib0700_ctrl_wr(d, b, 3); ret = dib0700_ctrl_wr(d, b, sizeof(b));
} else { } else {
deb_info("this firmware does not allow to change the USB xfer len\n"); deb_info("this firmware does not allow to change the USB xfer len\n");
ret = -EIO; ret = -EIO;
} }
return ret; return ret;
} }
...@@ -178,7 +179,8 @@ static int dib0700_i2c_xfer_new(struct i2c_adapter *adap, struct i2c_msg *msg, ...@@ -178,7 +179,8 @@ static int dib0700_i2c_xfer_new(struct i2c_adapter *adap, struct i2c_msg *msg,
value = ((en_start << 7) | (en_stop << 6) | value = ((en_start << 7) | (en_stop << 6) |
(msg[i].len & 0x3F)) << 8 | i2c_dest; (msg[i].len & 0x3F)) << 8 | i2c_dest;
/* I2C ctrl + FE bus; */ /* I2C ctrl + FE bus; */
index = ((gen_mode<<6)&0xC0) | ((bus_mode<<4)&0x30); index = ((gen_mode << 6) & 0xC0) |
((bus_mode << 4) & 0x30);
result = usb_control_msg(d->udev, result = usb_control_msg(d->udev,
usb_rcvctrlpipe(d->udev, 0), usb_rcvctrlpipe(d->udev, 0),
...@@ -198,11 +200,12 @@ static int dib0700_i2c_xfer_new(struct i2c_adapter *adap, struct i2c_msg *msg, ...@@ -198,11 +200,12 @@ static int dib0700_i2c_xfer_new(struct i2c_adapter *adap, struct i2c_msg *msg,
} else { } else {
/* Write request */ /* Write request */
buf[0] = REQUEST_NEW_I2C_WRITE; buf[0] = REQUEST_NEW_I2C_WRITE;
buf[1] = (msg[i].addr << 1); buf[1] = msg[i].addr << 1;
buf[2] = (en_start << 7) | (en_stop << 6) | buf[2] = (en_start << 7) | (en_stop << 6) |
(msg[i].len & 0x3F); (msg[i].len & 0x3F);
/* I2C ctrl + FE bus; */ /* I2C ctrl + FE bus; */
buf[3] = ((gen_mode<<6)&0xC0) | ((bus_mode<<4)&0x30); buf[3] = ((gen_mode << 6) & 0xC0) |
((bus_mode << 4) & 0x30);
/* The Actual i2c payload */ /* The Actual i2c payload */
memcpy(&buf[4], msg[i].buf, msg[i].len); memcpy(&buf[4], msg[i].buf, msg[i].len);
...@@ -240,7 +243,7 @@ static int dib0700_i2c_xfer_legacy(struct i2c_adapter *adap, ...@@ -240,7 +243,7 @@ static int dib0700_i2c_xfer_legacy(struct i2c_adapter *adap,
for (i = 0; i < num; i++) { for (i = 0; i < num; i++) {
/* fill in the address */ /* fill in the address */
buf[1] = (msg[i].addr << 1); buf[1] = msg[i].addr << 1;
/* fill the buffer */ /* fill the buffer */
memcpy(&buf[2], msg[i].buf, msg[i].len); memcpy(&buf[2], msg[i].buf, msg[i].len);
...@@ -368,7 +371,8 @@ int dib0700_download_firmware(struct usb_device *udev, const struct firmware *fw ...@@ -368,7 +371,8 @@ int dib0700_download_firmware(struct usb_device *udev, const struct firmware *fw
u8 buf[260]; u8 buf[260];
while ((ret = dvb_usb_get_hexline(fw, &hx, &pos)) > 0) { while ((ret = dvb_usb_get_hexline(fw, &hx, &pos)) > 0) {
deb_fwdata("writing to address 0x%08x (buffer: 0x%02x %02x)\n",hx.addr, hx.len, hx.chk); deb_fwdata("writing to address 0x%08x (buffer: 0x%02x %02x)\n",
hx.addr, hx.len, hx.chk);
buf[0] = hx.len; buf[0] = hx.len;
buf[1] = (hx.addr >> 8) & 0xff; buf[1] = (hx.addr >> 8) & 0xff;
...@@ -415,9 +419,9 @@ int dib0700_download_firmware(struct usb_device *udev, const struct firmware *fw ...@@ -415,9 +419,9 @@ int dib0700_download_firmware(struct usb_device *udev, const struct firmware *fw
for (i = 0; i < dib0700_device_count; i++) { for (i = 0; i < dib0700_device_count; i++) {
for (adap_num = 0; adap_num < dib0700_devices[i].num_adapters; for (adap_num = 0; adap_num < dib0700_devices[i].num_adapters;
adap_num++) { adap_num++) {
if (fw_version >= 0x10201) if (fw_version >= 0x10201) {
dib0700_devices[i].adapter[adap_num].stream.u.bulk.buffersize = 188*nb_packet_buffer_size; dib0700_devices[i].adapter[adap_num].stream.u.bulk.buffersize = 188*nb_packet_buffer_size;
else { } else {
/* for fw version older than 1.20.1, /* for fw version older than 1.20.1,
* the buffersize has to be n times 512 */ * the buffersize has to be n times 512 */
dib0700_devices[i].adapter[adap_num].stream.u.bulk.buffersize = ((188*nb_packet_buffer_size+188/2)/512)*512; dib0700_devices[i].adapter[adap_num].stream.u.bulk.buffersize = ((188*nb_packet_buffer_size+188/2)/512)*512;
...@@ -453,7 +457,7 @@ int dib0700_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff) ...@@ -453,7 +457,7 @@ int dib0700_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
if (st->disable_streaming_master_mode == 1) if (st->disable_streaming_master_mode == 1)
b[2] = 0x00; b[2] = 0x00;
else else
b[2] = (0x01 << 4); /* Master mode */ b[2] = 0x01 << 4; /* Master mode */
b[3] = 0x00; b[3] = 0x00;
...@@ -466,7 +470,7 @@ int dib0700_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff) ...@@ -466,7 +470,7 @@ int dib0700_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
b[2] |= st->channel_state; b[2] |= st->channel_state;
deb_info("data for streaming: %x %x\n",b[1],b[2]); deb_info("data for streaming: %x %x\n", b[1], b[2]);
return dib0700_ctrl_wr(adap->dev, b, 4); return dib0700_ctrl_wr(adap->dev, b, 4);
} }
...@@ -631,7 +635,7 @@ static void dib0700_rc_urb_completion(struct urb *purb) ...@@ -631,7 +635,7 @@ static void dib0700_rc_urb_completion(struct urb *purb)
int dib0700_rc_setup(struct dvb_usb_device *d) int dib0700_rc_setup(struct dvb_usb_device *d)
{ {
struct dib0700_state *st = d->priv; struct dib0700_state *st = d->priv;
u8 rc_setup[3] = {REQUEST_SET_RC, dvb_usb_dib0700_ir_proto, 0}; u8 rc_setup[3] = { REQUEST_SET_RC, dvb_usb_dib0700_ir_proto, 0 };
struct urb *purb; struct urb *purb;
int ret; int ret;
int i; int i;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册