mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 08:02:27 +02:00
staging: pi433: formatting improvement for multi-line bitwise statement
Move bitwise & operator to the end of previous line for better readability Signed-off-by: Paulo Miguel Almeida <paulo.miguel.almeida.rodenas@gmail.com> Link: https://lore.kernel.org/r/YicRpmT2xMupVp4h@mail.google.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
378c64302a
commit
d7e2d1e888
|
|
@ -442,8 +442,8 @@ static int pi433_receive(void *data)
|
|||
/* wait for RSSI level to become high */
|
||||
dev_dbg(dev->dev, "rx: going to wait for high RSSI level\n");
|
||||
retval = wait_event_interruptible(dev->rx_wait_queue,
|
||||
rf69_read_reg(spi, REG_IRQFLAGS1)
|
||||
& MASK_IRQFLAGS1_RSSI);
|
||||
rf69_read_reg(spi, REG_IRQFLAGS1) &
|
||||
MASK_IRQFLAGS1_RSSI);
|
||||
if (retval) /* wait was interrupted */
|
||||
goto abort;
|
||||
dev->interrupt_rx_allowed = false;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user