aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRehas Sachdeva <[email protected]>2016-09-20 17:36:29 +0530
committerGreg Kroah-Hartman <[email protected]>2016-09-22 11:54:48 +0200
commitf3151e0043099bed805cecb7f363331e8c0a0449 (patch)
treeea497055d10fe394043de470dad954dd29a72c6e
parentcf5d32736722a1abf00c432241a5477c09cd4db2 (diff)
staging: sm750fb: Use BIT(x) macro
Replaces left shift operation (1 << d) by BIT(x) macro. Signed-off-by: Rehas Sachdeva <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/sm750fb/ddk750_chip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm750fb/ddk750_chip.c
index f557b6dc9cd3..a887f327db5a 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -349,7 +349,7 @@ unsigned int calcPllValue(unsigned int request_orig, pll_value_t *pll)
fl_quo = (rem * 10000 / input);
for (d = max_d; d >= 0; d--) {
- X = (1 << d);
+ X = BIT(d);
M = quo * X;
M += fl_quo * X / 10000;
/* round step */