Commit 9772605c authored by Alexandre Courbot's avatar Alexandre Courbot Committed by Ben Skeggs

drm/nouveau/clk/gk20a: properly protect macro argument

Signed-off-by: default avatarAlexandre Courbot <acourbot@nvidia.com>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 791eeea2
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#define KHZ (1000) #define KHZ (1000)
#define MHZ (KHZ * 1000) #define MHZ (KHZ * 1000)
#define MASK(w) ((1 << w) - 1) #define MASK(w) ((1 << (w)) - 1)
#define GPCPLL_CFG (SYS_GPCPLL_CFG_BASE + 0) #define GPCPLL_CFG (SYS_GPCPLL_CFG_BASE + 0)
#define GPCPLL_CFG_ENABLE BIT(0) #define GPCPLL_CFG_ENABLE BIT(0)
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#define KHZ (1000) #define KHZ (1000)
#define MHZ (KHZ * 1000) #define MHZ (KHZ * 1000)
#define MASK(w) ((1 << w) - 1) #define MASK(w) ((1 << (w)) - 1)
#define BYPASSCTRL_SYS (SYS_GPCPLL_CFG_BASE + 0x340) #define BYPASSCTRL_SYS (SYS_GPCPLL_CFG_BASE + 0x340)
#define BYPASSCTRL_SYS_GPCPLL_SHIFT 0 #define BYPASSCTRL_SYS_GPCPLL_SHIFT 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment