Commit db8c7f2b authored by Marcin Ciupak's avatar Marcin Ciupak Committed by Greg Kroah-Hartman

staging: pi433: rf69.c style fix - space before asterisk

This patch fixes the following checkpatch.pl error:

ERROR: "(foo*)" should be "(foo *)"

in rf69.c file as requested by TODO file.

Additionally some style warnings remain valid here and could be fixed by
another patch.
Signed-off-by: default avatarMarcin Ciupak <marcin.s.ciupak@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b3fbc422
...@@ -919,7 +919,7 @@ int rf69_set_fifo_threshold(struct spi_device *spi, u8 threshold) ...@@ -919,7 +919,7 @@ int rf69_set_fifo_threshold(struct spi_device *spi, u8 threshold)
return retval; return retval;
// access the fifo to activate new threshold // access the fifo to activate new threshold
return rf69_read_fifo (spi, (u8*) &retval, 1); // retval used as buffer return rf69_read_fifo(spi, (u8 *)&retval, 1); // retval used as buffer
} }
int rf69_set_dagc(struct spi_device *spi, enum dagc dagc) int rf69_set_dagc(struct spi_device *spi, enum dagc dagc)
......
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