commit | b4d8aceb63985cd504a368b49b26b3681a40379f | [log] [tgz] |
---|---|---|
author | Shraddha Barke <shraddha.6596@gmail.com> | Thu Sep 10 22:00:30 2015 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Sat Sep 12 18:24:56 2015 -0700 |
tree | 92c65132cd743aedf17e650c1f7c80f0b6a75373 | |
parent | 5b8ffb5565a241c4cfddb15b5a7b2f28ce64dbf7 [diff] |
Staging: iio: meter: 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>