staging: pi433: remove unnecessary parentheses pointed out by checkpatch.pl
Checkpatch reports 'Unnecessary parentheses around <lines>'. Fix this by removing extraneous parentheses where applicable. Signed-off-by: Paulo Miguel Almeida <paulo.miguel.almeida.rodenas@gmail.com> Link: https://lore.kernel.org/r/20211222070256.GA7644@localhost.localdomain Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6350e6f6d1
commit
1190748185
|
@ -470,9 +470,9 @@ static int rf69_set_bandwidth_intern(struct spi_device *spi, u8 reg,
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((mantisse != mantisse16) &&
|
if (mantisse != mantisse16 &&
|
||||||
(mantisse != mantisse20) &&
|
mantisse != mantisse20 &&
|
||||||
(mantisse != mantisse24)) {
|
mantisse != mantisse24) {
|
||||||
dev_dbg(&spi->dev, "set: illegal bandwidth mantisse %u", mantisse);
|
dev_dbg(&spi->dev, "set: illegal bandwidth mantisse %u", mantisse);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue