diff options
author | Ruslan Pisarev <ruslan@rpisarev.org.ua> | 2010-10-20 05:34:18 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-10-22 23:29:28 -0400 |
commit | 4363a0b8343747a429df526249d2f3194403365c (patch) | |
tree | 742b15bbbc7cac73935d8fdecfecd56a88fb18cf | |
parent | 638054ab0276c40eca7cf49ae107e3d6f67ebf38 (diff) |
[media] tm6000: fix a macro coding style issue
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>
-rw-r--r-- | drivers/staging/tm6000/tm6000-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/tm6000/tm6000-core.c b/drivers/staging/tm6000/tm6000-core.c index 0883ea5c08f9..df3f187959b9 100644 --- a/drivers/staging/tm6000/tm6000-core.c +++ b/drivers/staging/tm6000/tm6000-core.c | |||
@@ -30,7 +30,7 @@ | |||
30 | #include <media/v4l2-common.h> | 30 | #include <media/v4l2-common.h> |
31 | #include <media/tuner.h> | 31 | #include <media/tuner.h> |
32 | 32 | ||
33 | #define USB_TIMEOUT 5*HZ /* ms */ | 33 | #define USB_TIMEOUT (5 * HZ) /* ms */ |
34 | 34 | ||
35 | int tm6000_read_write_usb(struct tm6000_core *dev, u8 req_type, u8 req, | 35 | int tm6000_read_write_usb(struct tm6000_core *dev, u8 req_type, u8 req, |
36 | u16 value, u16 index, u8 *buf, u16 len) | 36 | u16 value, u16 index, u8 *buf, u16 len) |