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;
|
||||
}
|
||||
|
||||
if ((mantisse != mantisse16) &&
|
||||
(mantisse != mantisse20) &&
|
||||
(mantisse != mantisse24)) {
|
||||
if (mantisse != mantisse16 &&
|
||||
mantisse != mantisse20 &&
|
||||
mantisse != mantisse24) {
|
||||
dev_dbg(&spi->dev, "set: illegal bandwidth mantisse %u", mantisse);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user