Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4363a0b8 authored by Ruslan Pisarev's avatar Ruslan Pisarev Committed by Mauro Carvalho Chehab
Browse files

[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: default avatarRuslan Pisarev <ruslan@rpisarev.org.ua>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 638054ab
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)