Commit 5049c15e authored by Tom Rix's avatar Tom Rix Committed by Mauro Carvalho Chehab
Browse files

media: si4713: remove trailing semicolon in macro definition



The macro use will already have a semicolon.

[hverkuil: also add () around p in the macro]

Signed-off-by: default avatarTom Rix <trix@redhat.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 9fe46e79
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -86,7 +86,7 @@ MODULE_VERSION("0.0.1");
#define check_command_failed(status)	(!(status & SI4713_CTS) || \
					(status & SI4713_ERR))
/* mute definition */
#define set_mute(p)	((p & 1) | ((p & 1) << 1));
#define set_mute(p)	(((p) & 1) | (((p) & 1) << 1))

#ifdef DEBUG
#define DBG_BUFFER(device, message, buffer, size)			\