From f1345b2f21e6f827a6445a3ea873336e540458cd Mon Sep 17 00:00:00 2001 From: Eisha Chen-yen-su Date: Tue, 20 Feb 2018 01:47:26 +0100 Subject: 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 Acked-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- drivers/staging/pi433/pi433_if.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'drivers/staging/pi433') diff --git a/drivers/staging/pi433/pi433_if.c b/drivers/staging/pi433/pi433_if.c index 4a8e633a0a1d..e8ddc924bb04 100644 --- a/drivers/staging/pi433/pi433_if.c +++ b/drivers/staging/pi433/pi433_if.c @@ -528,7 +528,8 @@ pi433_receive(void *data) /* need to drop bytes or acquire? */ if (dev->rx_bytes_to_drop > dev->rx_bytes_dropped) - bytes_to_read = dev->rx_bytes_to_drop - dev->rx_bytes_dropped; + bytes_to_read = dev->rx_bytes_to_drop - + dev->rx_bytes_dropped; else bytes_to_read = bytes_total - dev->rx_position; -- cgit v1.2.3