[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1523246336-5958-1-git-send-email-shannon.ml.booth@gmail.com>
Date: Mon, 9 Apr 2018 15:58:56 +1200
From: Shannon Booth <shannon.ml.booth@...il.com>
To: gregkh@...uxfoundation.org
Cc: devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
Shannon Booth <shannon.ml.booth@...il.com>
Subject: [PATCH] Staging: pi433: Fixed a coding style issue.
Fixed incorrect indentation of a return statement.
Signed-off-by: Shannon Booth <shannon.ml.booth@...il.com>
---
drivers/staging/pi433/rf69.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/staging/pi433/rf69.c b/drivers/staging/pi433/rf69.c
index 5b05548..430f7ad 100644
--- a/drivers/staging/pi433/rf69.c
+++ b/drivers/staging/pi433/rf69.c
@@ -579,7 +579,8 @@ bool rf69_get_flag(struct spi_device *spi, enum flag flag)
return (rf69_read_reg(spi, REG_IRQFLAGS2) & MASK_IRQFLAGS2_CRC_OK);
case battery_low:
return (rf69_read_reg(spi, REG_IRQFLAGS2) & MASK_IRQFLAGS2_LOW_BAT);
- default: return false;
+ default:
+ return false;
}
}
--
2.7.4
Powered by blists - more mailing lists