Vatsala Narang 8dd4305041 staging: rtl8192u: ieee80211: Replace bit shifting with BIT macro
Change suggested by coccinelle.

Replace bit shifting on 1 with the BIT(x) macro.
Coccinelle script:

@@
expression c;
@@

-(1 << c)
+BIT(c)

Signed-off-by: Vatsala Narang <vatsalanarang@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2019-04-30 15:03:42 +02:00
..
2019-04-21 23:18:44 +02:00
2019-04-17 12:07:31 +02:00
2019-04-16 13:22:50 +02:00
2019-04-30 15:00:30 +02:00