Commit fe084c7e authored by Andi Shyti's avatar Andi Shyti Committed by Mauro Carvalho Chehab

[media] lirc_dev: remove unnecessary debug prints

Signed-off-by: default avatarAndi Shyti <andi.shyti@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 70143984
...@@ -80,8 +80,6 @@ static void lirc_irctl_init(struct irctl *ir) ...@@ -80,8 +80,6 @@ static void lirc_irctl_init(struct irctl *ir)
static void lirc_irctl_cleanup(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)); device_destroy(lirc_class, MKDEV(MAJOR(lirc_base_dev), ir->d.minor));
if (ir->buf != ir->d.rbuf) { if (ir->buf != ir->d.rbuf) {
...@@ -127,9 +125,6 @@ static int lirc_thread(void *irctl) ...@@ -127,9 +125,6 @@ static int lirc_thread(void *irctl)
{ {
struct irctl *ir = irctl; struct irctl *ir = irctl;
dev_dbg(ir->d.dev, LOGHEAD "poll thread started\n",
ir->d.name, ir->d.minor);
do { do {
if (ir->open) { if (ir->open) {
if (ir->jiffies_to_wait) { if (ir->jiffies_to_wait) {
...@@ -146,9 +141,6 @@ static int lirc_thread(void *irctl) ...@@ -146,9 +141,6 @@ static int lirc_thread(void *irctl)
} }
} while (!kthread_should_stop()); } while (!kthread_should_stop());
dev_dbg(ir->d.dev, LOGHEAD "poll thread ended\n",
ir->d.name, ir->d.minor);
return 0; return 0;
} }
...@@ -277,8 +269,6 @@ static int lirc_allocate_driver(struct lirc_driver *d) ...@@ -277,8 +269,6 @@ static int lirc_allocate_driver(struct lirc_driver *d)
goto out; goto out;
} }
dev_dbg(d->dev, "lirc_dev: lirc_register_driver: sample_rate: %d\n",
d->sample_rate);
if (d->sample_rate) { if (d->sample_rate) {
if (2 > d->sample_rate || HZ < d->sample_rate) { if (2 > d->sample_rate || HZ < d->sample_rate) {
dev_err(d->dev, "lirc_dev: lirc_register_driver: " dev_err(d->dev, "lirc_dev: lirc_register_driver: "
...@@ -521,10 +511,6 @@ int lirc_dev_fop_open(struct inode *inode, struct file *file) ...@@ -521,10 +511,6 @@ int lirc_dev_fop_open(struct inode *inode, struct file *file)
} }
error: 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); mutex_unlock(&lirc_dev_lock);
nonseekable_open(inode, file); nonseekable_open(inode, file);
...@@ -546,8 +532,6 @@ int lirc_dev_fop_close(struct inode *inode, struct file *file) ...@@ -546,8 +532,6 @@ int lirc_dev_fop_close(struct inode *inode, struct file *file)
cdev = ir->cdev; 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); ret = mutex_lock_killable(&lirc_dev_lock);
WARN_ON(ret); WARN_ON(ret);
...@@ -582,8 +566,6 @@ unsigned int lirc_dev_fop_poll(struct file *file, poll_table *wait) ...@@ -582,8 +566,6 @@ unsigned int lirc_dev_fop_poll(struct file *file, poll_table *wait)
return POLLERR; return POLLERR;
} }
dev_dbg(ir->d.dev, LOGHEAD "poll called\n", ir->d.name, ir->d.minor);
if (!ir->attached) if (!ir->attached)
return POLLERR; return POLLERR;
...@@ -679,9 +661,6 @@ long lirc_dev_fop_ioctl(struct file *file, unsigned int cmd, unsigned long arg) ...@@ -679,9 +661,6 @@ long lirc_dev_fop_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
result = -EINVAL; result = -EINVAL;
} }
dev_dbg(ir->d.dev, LOGHEAD "ioctl result = %d\n",
ir->d.name, ir->d.minor, result);
mutex_unlock(&ir->irctl_lock); mutex_unlock(&ir->irctl_lock);
return result; return result;
...@@ -786,8 +765,6 @@ ssize_t lirc_dev_fop_read(struct file *file, ...@@ -786,8 +765,6 @@ ssize_t lirc_dev_fop_read(struct file *file,
out_unlocked: out_unlocked:
kfree(buf); 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; return ret ? ret : written;
} }
...@@ -810,8 +787,6 @@ ssize_t lirc_dev_fop_write(struct file *file, const char __user *buffer, ...@@ -810,8 +787,6 @@ ssize_t lirc_dev_fop_write(struct file *file, const char __user *buffer,
return -ENODEV; return -ENODEV;
} }
dev_dbg(ir->d.dev, LOGHEAD "write called\n", ir->d.name, ir->d.minor);
if (!ir->attached) if (!ir->attached)
return -ENODEV; return -ENODEV;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment