Commit dba18d61 authored by Valentin Vidic's avatar Valentin Vidic Committed by Greg Kroah-Hartman

staging: pi433: cleanup local variable

Rename temporary local variable and add required blank line.

Fixes checkpatch warning:

  WARNING: Missing a blank line after declarations
Signed-off-by: default avatarValentin Vidic <Valentin.Vidic@CARNet.hr>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f066ac11
...@@ -711,12 +711,13 @@ pi433_tx_thread(void *data) ...@@ -711,12 +711,13 @@ pi433_tx_thread(void *data)
while ((repetitions > 0) && (size > position)) { while ((repetitions > 0) && (size > position)) {
if ((size - position) > device->free_in_fifo) { if ((size - position) > device->free_in_fifo) {
/* msg to big for fifo - take a part */ /* msg to big for fifo - take a part */
int temp = device->free_in_fifo; int write_size = device->free_in_fifo;
device->free_in_fifo = 0; device->free_in_fifo = 0;
rf69_write_fifo(spi, rf69_write_fifo(spi,
&device->buffer[position], &device->buffer[position],
temp); write_size);
position += temp; position += write_size;
} else { } else {
/* msg fits into fifo - take all */ /* msg fits into fifo - take all */
device->free_in_fifo -= size; device->free_in_fifo -= size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment