Skip to content

Commit

Permalink
[media] tm6000: Fix bad indentation
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Thierry Reding authored and Mauro Carvalho Chehab committed Dec 11, 2011
1 parent fcd44b9 commit 875f0e3
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions drivers/media/video/tm6000/tm6000-video.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 875f0e3

Please sign in to comment.