staging: panel: Prefer using BIT Macro
Replace bit shifting on 1 with the BIT(x) Macro The semantic patch used to find this is: @@ int g; @@ -(1 << g) +BIT(g) Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
779fcc8410
commit
79f2af620e
|
@ -1794,7 +1794,7 @@ static void phys_scan_contacts(void)
|
|||
* So we'll scan them.
|
||||
*/
|
||||
for (bit = 0; bit < 8; bit++) {
|
||||
bitval = 1 << bit;
|
||||
bitval = BIT(bit);
|
||||
|
||||
if (!(scan_mask_o & bitval)) /* skip unused bits */
|
||||
continue;
|
||||
|
@ -2060,12 +2060,12 @@ static int input_name2mask(const char *name, pmask_t *mask, pmask_t *value,
|
|||
return 0; /* input name not found */
|
||||
neg = (in & 1); /* odd (lower) names are negated */
|
||||
in >>= 1;
|
||||
im |= (1 << in);
|
||||
im |= BIT(in);
|
||||
|
||||
name++;
|
||||
if (isdigit(*name)) {
|
||||
out = *name - '0';
|
||||
om |= (1 << out);
|
||||
om |= BIT(out);
|
||||
} else if (*name == '-') {
|
||||
out = 8;
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue