cec: remove recv msg uevent [1/1]

PD#SWPL-219005
PD#SWPL-219186

Problem:
suspend interrupted by rx msg uevent

Solution:
cec framework don't use rx msg uevent

Verify:
t6w

Change-Id: I8dc8c1c48b5f08f017bd075f67221336cab43949
Signed-off-by: bowen cheng <bowen.cheng@amlogic.com>
This commit is contained in:
bowen cheng
2025-06-19 19:08:55 +08:00
parent 41835eaacc
commit 2e4d2992ff
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -544,8 +544,8 @@ static void cec_new_msg_push(void)
return;
wake_up(&cec_msg_wait_queue);
/* uevent to notify cec msg received */
queue_delayed_work(cec_dev->cec_rx_event_wq,
&cec_dev->work_cec_rx, 0);
// queue_delayed_work(cec_dev->cec_rx_event_wq,
// &cec_dev->work_cec_rx, 0);
}
}
@@ -553,8 +553,8 @@ static void cec_stored_msg_push(void)
{
if (cec_config(0, 0) & CEC_FUNC_CFG_CEC_ON) {
wake_up(&cec_msg_wait_queue);
queue_delayed_work(cec_dev->cec_rx_event_wq,
&cec_dev->work_cec_rx, CEC_NOTIFY_DELAY);
// queue_delayed_work(cec_dev->cec_rx_event_wq,
// &cec_dev->work_cec_rx, CEC_NOTIFY_DELAY);
}
}
+1 -1
View File
@@ -9,7 +9,7 @@
#include <linux/clk.h>
#include "hdmi_tx_cec_20.h"
#define CEC_DRIVER_VERSION "2024/09/30: cec support std hibernate"
#define CEC_DRIVER_VERSION "2025/06/26: remove rx msg uevent"
#define CEC_DEV_NAME "cec"