[PATCH 2/8 v2] staging: pi433: move var declaration to function level

From: Valentin Vidic
Date: Wed Dec 13 2017 - 10:58:01 EST


Fixes checkpatch warning:

WARNING: Missing a blank line after declarations

Signed-off-by: Valentin Vidic <Valentin.Vidic@xxxxxxxxx>
---
v2: use a better variable name

drivers/staging/pi433/pi433_if.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/pi433/pi433_if.c b/drivers/staging/pi433/pi433_if.c
index 02887988d2ea..dfa771304d97 100644
--- a/drivers/staging/pi433/pi433_if.c
+++ b/drivers/staging/pi433/pi433_if.c
@@ -565,6 +565,7 @@ pi433_tx_thread(void *data)
bool rx_interrupted = false;
int position, repetitions;
int retval;
+ int write_size;

while (1) {
/* wait for fifo to be populated or for request to terminate*/
@@ -700,12 +701,12 @@ pi433_tx_thread(void *data)
while ((repetitions > 0) && (size > position)) {
if ((size - position) > device->free_in_fifo) {
/* msg to big for fifo - take a part */
- int temp = device->free_in_fifo;
+ write_size = device->free_in_fifo;
device->free_in_fifo = 0;
rf69_write_fifo(spi,
&buffer[position],
- temp);
- position += temp;
+ write_size);
+ position += write_size;
} else {
/* msg fits into fifo - take all */
device->free_in_fifo -= size;
--
2.15.0