Skip to content

Commit

Permalink
msm: msm_bus: Remove unnecessary parentheses
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
  • Loading branch information
nathanchance authored and khusika committed Jun 15, 2018
1 parent c6cdce0 commit caf087e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/platform/msm/msm_bus/msm_bus_rules.c
Expand Up @@ -65,8 +65,8 @@ static struct rule_node_info *get_node(u32 id, void *data)

list_for_each_entry(node_it, &node_list, link) {
if (node_it->id == id) {
if ((id == NB_ID)) {
if ((node_it->data == data)) {
if (id == NB_ID) {
if (node_it->data == data) {
node_match = node_it;
break;
}
Expand Down

0 comments on commit caf087e

Please sign in to comment.