2017-12-02 15:43:26

by Marcus Wolf

[permalink] [raw]
Subject: [PATCH] staging: pi433: Style fix - spaces required

Leftover changes from patch [PATCH 2/5] staging: pi433: rf69.c style fix - spaces required around
from Marcin Ciupak (11.10.2017)

Signed-of-by: Marcus Wolf <[email protected]>
---
drivers/staging/pi433/rf69.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/pi433/rf69.c b/drivers/staging/pi433/rf69.c
index 7a1f8d1..35bb3f9 100644
--- a/drivers/staging/pi433/rf69.c
+++ b/drivers/staging/pi433/rf69.c
@@ -633,7 +633,7 @@ int rf69_set_dio_mapping(struct spi_device *spi, u8 DIONumber, u8 value)
}

// read reg
- regValue=rf69_read_reg(spi, regaddr);
+ regValue = rf69_read_reg(spi, regaddr);
// delete old value
regValue = regValue & ~mask;
// add new value
--
1.7.10.4


2017-12-02 16:00:18

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH] staging: pi433: Style fix - spaces required

On Sat, Dec 02, 2017 at 05:43:20PM +0200, Marcus Wolf wrote:
> Leftover changes from patch [PATCH 2/5] staging: pi433: rf69.c style fix - spaces required around
> from Marcin Ciupak (11.10.2017)

Please properly wrap your changelog text at 72 columns like git asks you
do :)

thanks,

greg k-h