mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-09 06:43:09 +00:00
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: Tom Rix <trix@redhat.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
9fe46e7946
commit
5049c15e41
@ -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) \
|
||||
|
Loading…
Reference in New Issue
Block a user