commit | a8a211c481f806c20d56ddb7b0f8533813e936d0 | [log] [tgz] |
---|---|---|
author | Amitoj Kaur Chawla <amitoj1606@gmail.com> | Fri Oct 16 22:13:29 2015 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Fri Oct 16 23:05:17 2015 -0700 |
tree | 6ae7fbe4fe23b2e4aab4b5d449578a730f7ceca8 | |
parent | 574dddc6d73eedb3177c8db4f61fa7cebcabb128 [diff] |
staging: vt6655: Prefer using BIT Macro Replace bit shifting on 1 with the BIT(x) Macro The semantic patch used to find this is: @@ int g; @@ -(1 << g) +BIT(g) Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>