This provides dynamic debug support, pr_debug checks anyway if DEBUG is defined statically or is activated dynamically. Signed-off-by: Johannes Zink <j.zink@xxxxxxxxxxxxxx> --- drivers/fpga/machxo2-spi.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/fpga/machxo2-spi.c b/drivers/fpga/machxo2-spi.c index 905607992a12..39dd62359821 100644 --- a/drivers/fpga/machxo2-spi.c +++ b/drivers/fpga/machxo2-spi.c @@ -88,7 +88,6 @@ static int get_status(struct spi_device *spi, unsigned long *status) return 0; } -#ifdef DEBUG static const char *get_err_string(u8 err) { switch (err) { @@ -104,16 +103,13 @@ static const char *get_err_string(u8 err) return "Default switch case"; } -#endif static void dump_status_reg(unsigned long *status) { -#ifdef DEBUG pr_debug("machxo2 status: 0x%08lX - done=%d, cfgena=%d, busy=%d, fail=%d, devver=%d, err=%s\n", *status, test_bit(DONE, status), test_bit(ENAB, status), test_bit(BUSY, status), test_bit(FAIL, status), test_bit(DVER, status), get_err_string(get_err(status))); -#endif } static int wait_until_not_busy(struct spi_device *spi) -- 2.30.2