Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: pi433: Split subtraction across 2 lines

Split a subtraction across 2 lines in order to make these lines
no longer than 80 columns. Problem found with checkpatch.

Signed-off-by: Eisha Chen-yen-su <chenyensu0@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Eisha Chen-yen-su and committed by
Greg Kroah-Hartman
f1345b2f 20e5f042

+2 -1
+2 -1
drivers/staging/pi433/pi433_if.c
··· 528 528 529 529 /* need to drop bytes or acquire? */ 530 530 if (dev->rx_bytes_to_drop > dev->rx_bytes_dropped) 531 - bytes_to_read = dev->rx_bytes_to_drop - dev->rx_bytes_dropped; 531 + bytes_to_read = dev->rx_bytes_to_drop - 532 + dev->rx_bytes_dropped; 532 533 else 533 534 bytes_to_read = bytes_total - dev->rx_position; 534 535