Skip to content

Commit

Permalink
[media] tm6000: fix a macro coding style issue
Browse files Browse the repository at this point in the history
This is a patch to the tm6000-core.c file that fixed up a macros error
and error initialise statics to 0 found by the checkpatch.pl tools.

[mchehab@redhat.com: removed a merge conflict and add spaces between binary operator]
Signed-off-by: Ruslan Pisarev <ruslan@rpisarev.org.ua>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Ruslan Pisarev authored and Mauro Carvalho Chehab committed Oct 23, 2010
1 parent 638054a commit 4363a0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/tm6000/tm6000-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <media/v4l2-common.h>
#include <media/tuner.h>

#define USB_TIMEOUT 5*HZ /* ms */
#define USB_TIMEOUT (5 * HZ) /* ms */

int tm6000_read_write_usb(struct tm6000_core *dev, u8 req_type, u8 req,
u16 value, u16 index, u8 *buf, u16 len)
Expand Down

0 comments on commit 4363a0b

Please sign in to comment.