Skip to content

Commit e48d93a

Browse files
warped-rudijnettlet
authored andcommitted
MXC-CEC: Remove debug trace messages
Signed-off-by: Rudi <[email protected]>
1 parent e03ce14 commit e48d93a

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

drivers/mxc/hdmi-cec/mxc_hdmi-cec.c

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -355,8 +355,6 @@ static ssize_t hdmi_cec_read(struct file *file, char __user *buf, size_t count,
355355
struct hdmi_cec_event *event;
356356
struct hdmi_cec_priv *priv = file->private_data;
357357

358-
pr_debug("function : %s\n", __func__);
359-
360358
mutex_lock(&priv->lock);
361359

362360
if (!priv->is_started)
@@ -403,8 +401,6 @@ static ssize_t hdmi_cec_write(struct file *file, const char __user *buf,
403401
struct hdmi_cec_event *event;
404402
struct hdmi_cec_priv *priv = file->private_data;
405403

406-
pr_debug("function : %s\n", __func__);
407-
408404
mutex_lock(&priv->lock);
409405

410406
if (!priv->is_started)
@@ -475,8 +471,6 @@ void hdmi_cec_hpd_changed(unsigned int state)
475471
unsigned long flags;
476472
struct hdmi_cec_priv *priv = &hdmi_cec_data;
477473

478-
pr_debug("function : %s (%d)\n", __func__, state);
479-
480474
link_status = state & 1;
481475

482476
if (is_initialized) {
@@ -555,8 +549,6 @@ static long hdmi_cec_ioctl(struct file *file, u_int cmd, u_long arg)
555549
struct mxc_edid_cfg hdmi_edid_cfg;
556550
struct hdmi_cec_priv *priv = file->private_data;
557551

558-
pr_debug("function : %s\n", __func__);
559-
560552
switch (cmd) {
561553
case HDMICEC_IOC_SETLOGICALADDRESS:
562554
mutex_lock(&priv->lock);
@@ -602,8 +594,6 @@ static int hdmi_cec_release(struct inode *inode, struct file *file)
602594
{
603595
struct hdmi_cec_priv *priv = file->private_data;
604596

605-
pr_debug("function : %s\n", __func__);
606-
607597
mutex_lock(&priv->lock);
608598
if (priv->open_count) {
609599
priv->open_count = 0;
@@ -623,8 +613,6 @@ static unsigned int hdmi_cec_poll(struct file *file, poll_table *wait)
623613
unsigned int mask = 0;
624614
struct hdmi_cec_priv *priv = file->private_data;
625615

626-
pr_debug("function : %s\n", __func__);
627-
628616
poll_wait(file, &rx_queue, wait);
629617
poll_wait(file, &tx_queue, wait);
630618

0 commit comments

Comments
 (0)