summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPixelBot AutoMerger <android-nexus-securitybot@system.gserviceaccount.com>2023-09-17 19:01:05 -0700
committerSecurityBot <android-nexus-securitybot@system.gserviceaccount.com>2023-09-17 19:01:05 -0700
commitfa60b26c9e0c4c99d2fa1f74e217730b1a761caf (patch)
treee5481b7d2e59f846ac45dfbae4a78293b5a258b6
parentc73778244ff1929b58dfd79998ba01f39b33bd52 (diff)
parent47212ce550245a8d89380905d5dfb1e4aa2996f2 (diff)
downloadsamsung-fa60b26c9e0c4c99d2fa1f74e217730b1a761caf.tar.gz
Merge android14-gs-pixel-5.15-24Q1 into android14-gs-pixel-5.15
SBMerger: 558810260 Change-Id: I087b30000e7069c4b771cfb8d3bc4162cb75f541 Signed-off-by: SecurityBot <android-nexus-securitybot@system.gserviceaccount.com>
-rw-r--r--auth-control.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/auth-control.c b/auth-control.c
index b42db4b..bcd2d2d 100644
--- a/auth-control.c
+++ b/auth-control.c
@@ -20,6 +20,8 @@
#include "hdcp-log.h"
#include "teeif.h"
+#define HDCP_SCHEDULE_DELAY_MSEC (5000)
+
static struct delayed_work hdcp_work;
static enum auth_state state;
@@ -112,7 +114,7 @@ void hdcp_dplink_connect_state(enum dp_state dp_hdcp_state) {
return;
}
- schedule_delayed_work(&hdcp_work, msecs_to_jiffies(2000));
+ schedule_delayed_work(&hdcp_work, msecs_to_jiffies(HDCP_SCHEDULE_DELAY_MSEC));
return;
}
EXPORT_SYMBOL_GPL(hdcp_dplink_connect_state);