V4L/DVB (8736): dtv5100: CodingStyle cleanups
Signed-off-by: Antoine Jacquet <royale@zerezo.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
60688d5e6e
commit
736949862c
@@ -44,14 +44,14 @@ static int dtv5100_i2c_msg(struct dvb_usb_device *d, u8 addr,
|
||||
/* write { reg }, read { value } */
|
||||
request = (addr == DTV5100_DEMOD_ADDR ? DTV5100_DEMOD_READ :
|
||||
DTV5100_TUNER_READ);
|
||||
type = USB_TYPE_VENDOR|USB_DIR_IN;
|
||||
type = USB_TYPE_VENDOR | USB_DIR_IN;
|
||||
value = 0;
|
||||
break;
|
||||
case 2:
|
||||
/* write { reg, value } */
|
||||
request = (addr == DTV5100_DEMOD_ADDR ? DTV5100_DEMOD_WRITE :
|
||||
DTV5100_TUNER_WRITE);
|
||||
type = USB_TYPE_VENDOR|USB_DIR_OUT;
|
||||
type = USB_TYPE_VENDOR | USB_DIR_OUT;
|
||||
value = wbuf[1];
|
||||
break;
|
||||
default:
|
||||
@@ -147,11 +147,10 @@ static int dtv5100_probe(struct usb_interface *intf,
|
||||
struct usb_device *udev = interface_to_usbdev(intf);
|
||||
|
||||
/* initialize non qt1010/zl10353 part? */
|
||||
for (i = 0; dtv5100_init[i].request; i++)
|
||||
{
|
||||
for (i = 0; dtv5100_init[i].request; i++) {
|
||||
ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
|
||||
dtv5100_init[i].request,
|
||||
USB_TYPE_VENDOR|USB_DIR_OUT,
|
||||
USB_TYPE_VENDOR | USB_DIR_OUT,
|
||||
dtv5100_init[i].value,
|
||||
dtv5100_init[i].index, NULL, 0,
|
||||
DTV5100_USB_TIMEOUT);
|
||||
|
Reference in New Issue
Block a user