]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[media] lirc_dev: remove unnecessary debug prints
authorAndi Shyti <andi.shyti@samsung.com>
Wed, 6 Jul 2016 09:01:15 +0000 (06:01 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Wed, 13 Jul 2016 17:56:26 +0000 (14:56 -0300)
Signed-off-by: Andi Shyti <andi.shyti@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/rc/lirc_dev.c

index 154e553b3b67e8a67414e9760c990ce2c77932d1..9f20f94a31ae6a291db02e1e4d580cf182ce1193 100644 (file)
@@ -80,8 +80,6 @@ static void lirc_irctl_init(struct irctl *ir)
 
 static void lirc_irctl_cleanup(struct irctl *ir)
 {
-       dev_dbg(ir->d.dev, LOGHEAD "cleaning up\n", ir->d.name, ir->d.minor);
-
        device_destroy(lirc_class, MKDEV(MAJOR(lirc_base_dev), ir->d.minor));
 
        if (ir->buf != ir->d.rbuf) {
@@ -127,9 +125,6 @@ static int lirc_thread(void *irctl)
 {
        struct irctl *ir = irctl;
 
-       dev_dbg(ir->d.dev, LOGHEAD "poll thread started\n",
-               ir->d.name, ir->d.minor);
-
        do {
                if (ir->open) {
                        if (ir->jiffies_to_wait) {
@@ -146,9 +141,6 @@ static int lirc_thread(void *irctl)
                }
        } while (!kthread_should_stop());
 
-       dev_dbg(ir->d.dev, LOGHEAD "poll thread ended\n",
-               ir->d.name, ir->d.minor);
-
        return 0;
 }
 
@@ -277,8 +269,6 @@ static int lirc_allocate_driver(struct lirc_driver *d)
                goto out;
        }
 
-       dev_dbg(d->dev, "lirc_dev: lirc_register_driver: sample_rate: %d\n",
-               d->sample_rate);
        if (d->sample_rate) {
                if (2 > d->sample_rate || HZ < d->sample_rate) {
                        dev_err(d->dev, "lirc_dev: lirc_register_driver: "
@@ -521,10 +511,6 @@ int lirc_dev_fop_open(struct inode *inode, struct file *file)
        }
 
 error:
-       if (ir)
-               dev_dbg(ir->d.dev, LOGHEAD "open result = %d\n",
-                       ir->d.name, ir->d.minor, retval);
-
        mutex_unlock(&lirc_dev_lock);
 
        nonseekable_open(inode, file);
@@ -546,8 +532,6 @@ int lirc_dev_fop_close(struct inode *inode, struct file *file)
 
        cdev = ir->cdev;
 
-       dev_dbg(ir->d.dev, LOGHEAD "close called\n", ir->d.name, ir->d.minor);
-
        ret = mutex_lock_killable(&lirc_dev_lock);
        WARN_ON(ret);
 
@@ -582,8 +566,6 @@ unsigned int lirc_dev_fop_poll(struct file *file, poll_table *wait)
                return POLLERR;
        }
 
-       dev_dbg(ir->d.dev, LOGHEAD "poll called\n", ir->d.name, ir->d.minor);
-
        if (!ir->attached)
                return POLLERR;
 
@@ -679,9 +661,6 @@ long lirc_dev_fop_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
                result = -EINVAL;
        }
 
-       dev_dbg(ir->d.dev, LOGHEAD "ioctl result = %d\n",
-               ir->d.name, ir->d.minor, result);
-
        mutex_unlock(&ir->irctl_lock);
 
        return result;
@@ -786,8 +765,6 @@ out_locked:
 
 out_unlocked:
        kfree(buf);
-       dev_dbg(ir->d.dev, LOGHEAD "read result = %s (%d)\n",
-               ir->d.name, ir->d.minor, ret ? "<fail>" : "<ok>", ret);
 
        return ret ? ret : written;
 }
@@ -810,8 +787,6 @@ ssize_t lirc_dev_fop_write(struct file *file, const char __user *buffer,
                return -ENODEV;
        }
 
-       dev_dbg(ir->d.dev, LOGHEAD "write called\n", ir->d.name, ir->d.minor);
-
        if (!ir->attached)
                return -ENODEV;