diff options
author | Vinod Koul <vkoul@kernel.org> | 2019-05-02 16:29:28 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-05-02 17:17:51 +0200 |
commit | 1824dd8035fceb337801bed76515eceda8d7af6b (patch) | |
tree | 27035cb5c5a8e88aeb0b8e35cc8413500572b7fc | |
parent | 7d3b3cdfd16536642f7eebcdb33daaf1ce9469c5 (diff) | |
download | linux-1824dd8035fceb337801bed76515eceda8d7af6b.tar.gz linux-1824dd8035fceb337801bed76515eceda8d7af6b.tar.bz2 linux-1824dd8035fceb337801bed76515eceda8d7af6b.zip |
soundwire: wrap macro argument in parenthesis
macro argument should be inside a parenthesis to avoid precedence
issues
checkpatch complains:
CHECK: Macro argument 'n' may be better as '(n)' to avoid
precedence issues
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | include/linux/soundwire/sdw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/soundwire/sdw.h b/include/linux/soundwire/sdw.h index 41c49631288a..35662d9c2c62 100644 --- a/include/linux/soundwire/sdw.h +++ b/include/linux/soundwire/sdw.h @@ -36,7 +36,7 @@ struct sdw_slave; #define SDW_FRAME_CTRL_BITS 48 #define SDW_MAX_DEVICES 11 -#define SDW_VALID_PORT_RANGE(n) (n <= 14 && n >= 1) +#define SDW_VALID_PORT_RANGE(n) ((n) <= 14 && (n) >= 1) #define SDW_DAI_ID_RANGE_START 100 #define SDW_DAI_ID_RANGE_END 200 |