staging: pi433: Remove unnecessary #ifdef DEBUG around dev_dbg
dev_dbg() already depends on DEBUG. Signed-off-by: Simon Sandström <simon@nikanor.nu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
49f43ef226
commit
b01c3553a9
|
@ -767,9 +767,7 @@ int rf69_read_fifo (struct spi_device *spi, u8 *buffer, unsigned int size)
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
if (size > FIFO_SIZE) {
|
if (size > FIFO_SIZE) {
|
||||||
#ifdef DEBUG
|
|
||||||
dev_dbg(&spi->dev, "read fifo: passed in buffer bigger then internal buffer\n");
|
dev_dbg(&spi->dev, "read fifo: passed in buffer bigger then internal buffer\n");
|
||||||
#endif
|
|
||||||
return -EMSGSIZE;
|
return -EMSGSIZE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -801,9 +799,7 @@ int rf69_write_fifo(struct spi_device *spi, u8 *buffer, unsigned int size)
|
||||||
u8 local_buffer[FIFO_SIZE + 1];
|
u8 local_buffer[FIFO_SIZE + 1];
|
||||||
|
|
||||||
if (size > FIFO_SIZE) {
|
if (size > FIFO_SIZE) {
|
||||||
#ifdef DEBUG
|
|
||||||
dev_dbg(&spi->dev, "read fifo: passed in buffer bigger then internal buffer\n");
|
dev_dbg(&spi->dev, "read fifo: passed in buffer bigger then internal buffer\n");
|
||||||
#endif
|
|
||||||
return -EMSGSIZE;
|
return -EMSGSIZE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue