staging: pi433: fix CamelCase for syncSize variable

Fixes checkpatch warning:

  CHECK: Avoid CamelCase: <syncSize>

Signed-off-by: Valentin Vidic <Valentin.Vidic@CARNet.hr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Valentin Vidic 2018-03-14 21:44:03 +01:00 committed by Greg Kroah-Hartman
parent 4e3290dbf3
commit 803058902b
1 changed files with 3 additions and 3 deletions

View File

@ -633,16 +633,16 @@ int rf69_set_fifo_fill_condition(struct spi_device *spi, enum fifo_fill_conditio
}
}
int rf69_set_sync_size(struct spi_device *spi, u8 syncSize)
int rf69_set_sync_size(struct spi_device *spi, u8 sync_size)
{
// check input value
if (syncSize > 0x07) {
if (sync_size > 0x07) {
dev_dbg(&spi->dev, "set: illegal input param");
return -EINVAL;
}
// write value
return rf69_read_mod_write(spi, REG_SYNC_CONFIG, MASK_SYNC_CONFIG_SYNC_SIZE, (syncSize << 3));
return rf69_read_mod_write(spi, REG_SYNC_CONFIG, MASK_SYNC_CONFIG_SYNC_SIZE, (sync_size << 3));
}
int rf69_set_sync_values(struct spi_device *spi, u8 sync_values[8])