Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965489AbdLSO4o (ORCPT ); Tue, 19 Dec 2017 09:56:44 -0500 Received: from mail.CARNet.hr ([161.53.123.6]:38528 "EHLO mail.carnet.hr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S936701AbdLSO4g (ORCPT ); Tue, 19 Dec 2017 09:56:36 -0500 From: Valentin Vidic To: Greg Kroah-Hartman Cc: Dan Carpenter , devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Marcin Ciupak , Marcus Wolf , =?UTF-8?q?Simon=20Sandstr=C3=B6m?= , Marcus Wolf , Valentin Vidic Date: Tue, 19 Dec 2017 15:56:19 +0100 Message-Id: <20171219145623.24023-2-Valentin.Vidic@CARNet.hr> X-Mailer: git-send-email 2.15.0 In-Reply-To: <20171219145623.24023-1-Valentin.Vidic@CARNet.hr> References: <20171219145623.24023-1-Valentin.Vidic@CARNet.hr> X-SA-Exim-Connect-IP: 2001:b68:ff:12::131 Subject: [PATCH 2/6 v5] staging: pi433: cleanup local variable declaration X-SA-Exim-Version: 4.2.1 (built Mon, 26 Dec 2011 16:24:06 +0000) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1099 Lines: 36 Fix variable naming and checkpatch warning: WARNING: Missing a blank line after declarations Signed-off-by: Valentin Vidic --- v5: resend patchset based on comments drivers/staging/pi433/pi433_if.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/drivers/staging/pi433/pi433_if.c b/drivers/staging/pi433/pi433_if.c index 02887988d2ea..86709a7100ad 100644 --- a/drivers/staging/pi433/pi433_if.c +++ b/drivers/staging/pi433/pi433_if.c @@ -699,13 +699,15 @@ pi433_tx_thread(void *data) repetitions = tx_cfg.repetitions; while ((repetitions > 0) && (size > position)) { if ((size - position) > device->free_in_fifo) { + int write_size; + /* 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