*     Marcus Wolf <linux@wolf-entwicklungen.de>
  */
 
-/* enable prosa debug info */
-#undef DEBUG
-/* enable print of values on fifo access */
-#undef DEBUG_FIFO_ACCESS
-
 #include <linux/types.h>
 #include <linux/spi/spi.h>
 
 
 int rf69_read_fifo(struct spi_device *spi, u8 *buffer, unsigned int size)
 {
-#ifdef DEBUG_FIFO_ACCESS
        int i;
-#endif
        struct spi_transfer transfer;
        u8 local_buffer[FIFO_SIZE + 1];
        int retval;
 
        retval = spi_sync_transfer(spi, &transfer, 1);
 
-#ifdef DEBUG_FIFO_ACCESS
+       /* print content read from fifo for debugging purposes */
        for (i = 0; i < size; i++)
                dev_dbg(&spi->dev, "%d - 0x%x\n", i, local_buffer[i + 1]);
-#endif
 
        memcpy(buffer, &local_buffer[1], size);
 
 
 int rf69_write_fifo(struct spi_device *spi, u8 *buffer, unsigned int size)
 {
-#ifdef DEBUG_FIFO_ACCESS
        int i;
-#endif
        u8 local_buffer[FIFO_SIZE + 1];
 
        if (size > FIFO_SIZE) {
        local_buffer[0] = REG_FIFO | WRITE_BIT;
        memcpy(&local_buffer[1], buffer, size);
 
-#ifdef DEBUG_FIFO_ACCESS
+       /* print content written from fifo for debugging purposes */
        for (i = 0; i < size; i++)
                dev_dbg(&spi->dev, "0x%x\n", buffer[i]);
-#endif
 
        return spi_write(spi, local_buffer, size + 1);
 }