]> git.karo-electronics.de Git - karo-tx-linux.git/commit
Staging: lustre: ptlrpc: Prefer using the BIT macro
authorShraddha Barke <shraddha.6596@gmail.com>
Thu, 10 Sep 2015 16:32:40 +0000 (22:02 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 13 Sep 2015 01:24:57 +0000 (18:24 -0700)
commit6876a1435390a1bcc59cea6e23b9e03ae727819d
tree9b4b844ec7078443f03c81d3eaf7a8ce06e604d8
parent4e6aa99b87c3cd9e2487b275a7c47b37bee33fb5
Staging: lustre: ptlrpc: Prefer using the BIT macro

This patch replaces bit shifting on 1 with the BIT(x) macro

This was done with coccinelle:
@@ int g; @@

-(1 << g)
+BIT(g)

Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/ptlrpc/layout.c