diff options
author | Arushi Singhal <arushisinghal19971997@gmail.com> | 2017-03-22 18:53:33 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-03-27 15:24:49 +0300 |
commit | 08d6ccf39bfb752fdef465f73e6fc7417259af31 (patch) | |
tree | 9e0babc3e03c0b41654d6e4cec665ffded21cca3 /scripts/gdb/linux/utils.py | |
parent | 5c143123321cd30553528e92ef7353f8488a461d (diff) | |
download | linux-08d6ccf39bfb752fdef465f73e6fc7417259af31.tar.xz |
staging: lustre: Replace a bit shift by a use of BIT.
This patch replaces bit shifting on 1 with the BIT(x) macro.
This was done with coccinelle:
@@
constant c;
@@
-1 << c
+BIT(c)
Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'scripts/gdb/linux/utils.py')
0 files changed, 0 insertions, 0 deletions