Skip to content

Commit

Permalink
wilc1000 : Remove leftover comment delimiters
Browse files Browse the repository at this point in the history
Remove leftover comment delimiters that were only partially removed
in a previous cleanup.

Fixes : c3ca637 ("staging: wilc1000: remove useless comment")
Signed-off-by: Anish Bhatt <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
anish authored and gregkh committed Sep 30, 2015
1 parent 2866914 commit 65ead4e
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions drivers/staging/wilc1000/wilc_wlan.c
Original file line number Diff line number Diff line change
Expand Up @@ -1637,13 +1637,12 @@ static int wilc_wlan_stop(void)
}

} while (timeout);
reg = ((1 << 0) | (1 << 1) | (1 << 2) | (1 << 3) | (1 << 8) | (1 << 9) | (1 << 26) | (1 << 29) | (1 << 30) | (1 << 31)); /**/
/**/
p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg); /**/
reg = ~(1 << 10); /**/
/**/
ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg); /**/
/******************************************************************************/
reg = ((1 << 0) | (1 << 1) | (1 << 2) | (1 << 3) | (1 << 8) | (1 << 9) | (1 << 26) | (1 << 29) | (1 << 30) | (1 << 31));

p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);
reg = ~(1 << 10);

ret = p->hif_func.hif_write_reg(WILC_GLB_RESET_0, reg);

release_bus(RELEASE_ALLOW_SLEEP);

Expand Down

0 comments on commit 65ead4e

Please sign in to comment.