mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 07:01:32 +00:00
rsxx: Remove unnecessary parentheses
Clang warns when more than one set of parentheses is used for a single conditional statement: drivers/block/rsxx/cregs.c:279:15: warning: equality comparison with extraneous parentheses [-Wparentheses-equality] if ((cmd->op == CREG_OP_READ)) { ~~~~~~~~^~~~~~~~~~~~~~~ drivers/block/rsxx/cregs.c:279:15: note: remove extraneous parentheses around the comparison to silence this warning if ((cmd->op == CREG_OP_READ)) { ~ ^ ~ drivers/block/rsxx/cregs.c:279:15: note: use '=' to turn this equality comparison into an assignment if ((cmd->op == CREG_OP_READ)) { ^~ = 1 warning generated. Reported-by: Nick Desaulniers <ndesaulniers@google.com> Reviewed-by: Nick Desaulniers <ndesaulniers@google.com> Signed-off-by: Nathan Chancellor <natechancellor@gmail.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
902d53914f
commit
798ef9e701
@ -276,7 +276,7 @@ static void creg_cmd_done(struct work_struct *work)
|
|||||||
st = -EIO;
|
st = -EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((cmd->op == CREG_OP_READ)) {
|
if (cmd->op == CREG_OP_READ) {
|
||||||
unsigned int cnt8 = ioread32(card->regmap + CREG_CNT);
|
unsigned int cnt8 = ioread32(card->regmap + CREG_CNT);
|
||||||
|
|
||||||
/* Paranoid Sanity Checks */
|
/* Paranoid Sanity Checks */
|
||||||
|
Loading…
Reference in New Issue
Block a user