aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/pi433/rf69.c
diff options
context:
space:
mode:
authorValentin Vidic <Valentin.Vidic@CARNet.hr>2017-12-10 15:31:09 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-12-13 12:56:29 +0100
commit7b15049c4d66a426f782936ce3de1f719889f97a (patch)
treef50548521284da723ae116f941941a708135553c /drivers/staging/pi433/rf69.c
parentstaging: pi433: add space around operators (diff)
downloadlinux-dev-7b15049c4d66a426f782936ce3de1f719889f97a.tar.xz
linux-dev-7b15049c4d66a426f782936ce3de1f719889f97a.zip
staging: pi433: remove space inside parenthesis
Fixes checkpatch error for prohibited spaces. Signed-off-by: Valentin Vidic <Valentin.Vidic@CARNet.hr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/pi433/rf69.c')
-rw-r--r--drivers/staging/pi433/rf69.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/pi433/rf69.c b/drivers/staging/pi433/rf69.c
index 6e38e6a515a4..770c33c9e60e 100644
--- a/drivers/staging/pi433/rf69.c
+++ b/drivers/staging/pi433/rf69.c
@@ -757,7 +757,7 @@ int rf69_set_dagc(struct spi_device *spi, enum dagc dagc)
/*-------------------------------------------------------------------------*/
-int rf69_read_fifo (struct spi_device *spi, u8 *buffer, unsigned int size)
+int rf69_read_fifo(struct spi_device *spi, u8 *buffer, unsigned int size)
{
#ifdef DEBUG_FIFO_ACCESS
int i;
@@ -811,7 +811,7 @@ int rf69_write_fifo(struct spi_device *spi, u8 *buffer, unsigned int size)
dev_dbg(&spi->dev, "0x%x\n", buffer[i]);
#endif
- return spi_write (spi, local_buffer, size + 1);
+ return spi_write(spi, local_buffer, size + 1);
}
/*-------------------------------------------------------------------------*/