@@ -355,8 +355,6 @@ static ssize_t hdmi_cec_read(struct file *file, char __user *buf, size_t count,
355
355
struct hdmi_cec_event * event ;
356
356
struct hdmi_cec_priv * priv = file -> private_data ;
357
357
358
- pr_debug ("function : %s\n" , __func__ );
359
-
360
358
mutex_lock (& priv -> lock );
361
359
362
360
if (!priv -> is_started )
@@ -403,8 +401,6 @@ static ssize_t hdmi_cec_write(struct file *file, const char __user *buf,
403
401
struct hdmi_cec_event * event ;
404
402
struct hdmi_cec_priv * priv = file -> private_data ;
405
403
406
- pr_debug ("function : %s\n" , __func__ );
407
-
408
404
mutex_lock (& priv -> lock );
409
405
410
406
if (!priv -> is_started )
@@ -475,8 +471,6 @@ void hdmi_cec_hpd_changed(unsigned int state)
475
471
unsigned long flags ;
476
472
struct hdmi_cec_priv * priv = & hdmi_cec_data ;
477
473
478
- pr_debug ("function : %s (%d)\n" , __func__ , state );
479
-
480
474
link_status = state & 1 ;
481
475
482
476
if (is_initialized ) {
@@ -555,8 +549,6 @@ static long hdmi_cec_ioctl(struct file *file, u_int cmd, u_long arg)
555
549
struct mxc_edid_cfg hdmi_edid_cfg ;
556
550
struct hdmi_cec_priv * priv = file -> private_data ;
557
551
558
- pr_debug ("function : %s\n" , __func__ );
559
-
560
552
switch (cmd ) {
561
553
case HDMICEC_IOC_SETLOGICALADDRESS :
562
554
mutex_lock (& priv -> lock );
@@ -602,8 +594,6 @@ static int hdmi_cec_release(struct inode *inode, struct file *file)
602
594
{
603
595
struct hdmi_cec_priv * priv = file -> private_data ;
604
596
605
- pr_debug ("function : %s\n" , __func__ );
606
-
607
597
mutex_lock (& priv -> lock );
608
598
if (priv -> open_count ) {
609
599
priv -> open_count = 0 ;
@@ -623,8 +613,6 @@ static unsigned int hdmi_cec_poll(struct file *file, poll_table *wait)
623
613
unsigned int mask = 0 ;
624
614
struct hdmi_cec_priv * priv = file -> private_data ;
625
615
626
- pr_debug ("function : %s\n" , __func__ );
627
-
628
616
poll_wait (file , & rx_queue , wait );
629
617
poll_wait (file , & tx_queue , wait );
630
618
0 commit comments