staging: media: lirc: lirc_bt829.c: replace dprintk by dev_dbg
authorAya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Sun, 26 Oct 2014 17:35:20 +0000 (19:35 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 29 Oct 2014 07:36:36 +0000 (15:36 +0800)
This patch removes the custom printk macro dprintk and replaces all
the calls made to it by dev_dbg.

Signed-off-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/media/lirc/lirc_bt829.c

index 4c806ba..44f5655 100644 (file)
@@ -56,11 +56,6 @@ static unsigned char do_get_bits(void);
 #define DRIVER_NAME "lirc_bt829"
 
 static bool debug;
-#define dprintk(fmt, args...)                                           \
-       do {                                                             \
-               if (debug)                                               \
-                       printk(KERN_DEBUG DRIVER_NAME ": "fmt, ## args); \
-       } while (0)
 
 static int atir_minor;
 static phys_addr_t pci_addr_phys;
@@ -101,7 +96,7 @@ static int atir_add_to_buf(void *data, struct lirc_buffer *buf)
        status = poll_main();
        key = (status >> 8) & 0xFF;
        if (status & 0xFF) {
-               dprintk("reading key %02X\n", key);
+               dev_dbg(atir_driver.dev, "reading key %02X\n", key);
                lirc_buffer_write(buf, &key);
                return 0;
        }
@@ -110,13 +105,13 @@ static int atir_add_to_buf(void *data, struct lirc_buffer *buf)
 
 static int atir_set_use_inc(void *data)
 {
-       dprintk("driver is opened\n");
+       dev_dbg(atir_driver.dev, "driver is opened\n");
        return 0;
 }
 
 static void atir_set_use_dec(void *data)
 {
-       dprintk("driver is closed\n");
+       dev_dbg(atir_driver.dev, "driver is closed\n");
 }
 
 int init_module(void)
@@ -154,7 +149,8 @@ int init_module(void)
                rc = atir_minor;
                goto err_unmap;
        }
-       dprintk("driver is registered on minor %d\n", atir_minor);
+       dev_dbg(atir_driver.dev, "driver is registered on minor %d\n",
+                               atir_minor);
 
        return 0;