diff options
author | Haneen Mohammed <hamohammed.sa@gmail.com> | 2015-03-22 19:23:23 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-23 22:21:58 +0100 |
commit | 0c76706967dd15b58dfc132d1dc46e13edb86424 (patch) | |
tree | 705baa06117da9eae1cb5849b237a4c21c18dbba /drivers/hwmon/da9052-hwmon.c | |
parent | Staging: iio: Fix file header to match standards (diff) | |
download | linux-0c76706967dd15b58dfc132d1dc46e13edb86424.tar.xz linux-0c76706967dd15b58dfc132d1dc46e13edb86424.zip |
Staging: iio: use the BIT macro in .h files
This patch replace bit shifting on 1, 2, and 3 with the BIT(x) macro.
Issue addressed by checkpatch.pl with --strict flag.
This was done with the help of Coccninelle:
@r1@
constant int g;
@@
(
0<<g
|
1<<g
|
2<<g
|
3<<g
)
@script:python b@
g2 <<r1.g;
y;
@@
coccinelle.y = int(g2) + 1
@c@
constant int r1.g;
identifier b.y;
@@
(
-(1 << g)
+BIT(g)
|
-(0 << g)
+ 0
|
-(2 << g)
+BIT(y)
|
-(3 << g)
+(BIT(y)| BIT(g))
)
Signed-off-by: Haneen Mohammed <hamohammed.sa@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hwmon/da9052-hwmon.c')
0 files changed, 0 insertions, 0 deletions