diff options
author | Steven Toth <stoth@linuxtv.org> | 2008-10-16 19:19:41 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-17 16:27:26 -0400 |
commit | a8eb912c6d2c68426c2c2e0aad4c2bbec2240179 (patch) | |
tree | bca89eeffa3db85d56d89442faa1c38f6a0cf382 /drivers/media/video | |
parent | 9c8ced511e154faf1a7af3f1abdfff45dccbe54a (diff) |
V4L/DVB (9252): au0828: Checkpatch compliance
au0828: Checkpatch compliance
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video')
-rw-r--r-- | drivers/media/video/au0828/au0828-cards.c | 2 | ||||
-rw-r--r-- | drivers/media/video/au0828/au0828-core.c | 3 | ||||
-rw-r--r-- | drivers/media/video/au0828/au0828-dvb.c | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/drivers/media/video/au0828/au0828-cards.c b/drivers/media/video/au0828/au0828-cards.c index 66e0edd5861f..d60123b413f5 100644 --- a/drivers/media/video/au0828/au0828-cards.c +++ b/drivers/media/video/au0828/au0828-cards.c | |||
@@ -186,7 +186,7 @@ void au0828_gpio_setup(struct au0828_dev *dev) | |||
186 | } | 186 | } |
187 | 187 | ||
188 | /* table of devices that work with this driver */ | 188 | /* table of devices that work with this driver */ |
189 | struct usb_device_id au0828_usb_id_table [] = { | 189 | struct usb_device_id au0828_usb_id_table[] = { |
190 | { USB_DEVICE(0x2040, 0x7200), | 190 | { USB_DEVICE(0x2040, 0x7200), |
191 | .driver_info = AU0828_BOARD_HAUPPAUGE_HVR950Q }, | 191 | .driver_info = AU0828_BOARD_HAUPPAUGE_HVR950Q }, |
192 | { USB_DEVICE(0x2040, 0x7240), | 192 | { USB_DEVICE(0x2040, 0x7240), |
diff --git a/drivers/media/video/au0828/au0828-core.c b/drivers/media/video/au0828/au0828-core.c index d856de9f742f..5765e8656376 100644 --- a/drivers/media/video/au0828/au0828-core.c +++ b/drivers/media/video/au0828/au0828-core.c | |||
@@ -91,7 +91,8 @@ static int send_control_msg(struct au0828_dev *dev, u16 request, u32 value, | |||
91 | status = usb_control_msg(dev->usbdev, | 91 | status = usb_control_msg(dev->usbdev, |
92 | usb_sndctrlpipe(dev->usbdev, 0), | 92 | usb_sndctrlpipe(dev->usbdev, 0), |
93 | request, | 93 | request, |
94 | USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, | 94 | USB_DIR_OUT | USB_TYPE_VENDOR | |
95 | USB_RECIP_DEVICE, | ||
95 | value, index, | 96 | value, index, |
96 | cp, size, 1000); | 97 | cp, size, 1000); |
97 | 98 | ||
diff --git a/drivers/media/video/au0828/au0828-dvb.c b/drivers/media/video/au0828/au0828-dvb.c index f0fcdb4769d7..a882cf546d0a 100644 --- a/drivers/media/video/au0828/au0828-dvb.c +++ b/drivers/media/video/au0828/au0828-dvb.c | |||
@@ -173,7 +173,8 @@ static int start_urb_transfer(struct au0828_dev *dev) | |||
173 | purb->status = -EINPROGRESS; | 173 | purb->status = -EINPROGRESS; |
174 | usb_fill_bulk_urb(purb, | 174 | usb_fill_bulk_urb(purb, |
175 | dev->usbdev, | 175 | dev->usbdev, |
176 | usb_rcvbulkpipe(dev->usbdev, _AU0828_BULKPIPE), | 176 | usb_rcvbulkpipe(dev->usbdev, |
177 | _AU0828_BULKPIPE), | ||
177 | purb->transfer_buffer, | 178 | purb->transfer_buffer, |
178 | URB_BUFSIZE, | 179 | URB_BUFSIZE, |
179 | urb_completion, | 180 | urb_completion, |