mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
[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>
This commit is contained in:
parent
fcd44b9efb
commit
875f0e3da1
1 changed files with 2 additions and 4 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue