mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
staging: media: lirc: lirc_bt829.c: replace dprintk by dev_dbg
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>
This commit is contained in:
parent
732ba199ab
commit
72f3f59e73
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user