1
0
Fork 0

[media] tm6000: Fix bad indentation

Function parameters on subsequent lines should never be aligned with the
function name but rather be indented.

Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
hifive-unleashed-5.1
Thierry Reding 2011-12-06 09:39:36 -03:00 committed by Mauro Carvalho Chehab
parent fcd44b9efb
commit 875f0e3da1
1 changed files with 2 additions and 4 deletions

View File

@ -1614,12 +1614,10 @@ static int tm6000_release(struct file *file)
if (&dev->int_in)
usb_set_interface(dev->udev,
dev->isoc_in.bInterfaceNumber,
2);
dev->isoc_in.bInterfaceNumber, 2);
else
usb_set_interface(dev->udev,
dev->isoc_in.bInterfaceNumber,
0);
dev->isoc_in.bInterfaceNumber, 0);
/* Start interrupt USB pipe */
tm6000_ir_int_start(dev);