summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorDonghan Ryu <dryu@nvidia.com>2011-08-01 20:02:58 +0900
committerVarun Colbert <vcolbert@nvidia.com>2011-09-07 17:35:41 -0700
commit0e5b68619d03e7413d5c718f98d0820f3c534e86 (patch)
tree3b401e2404a7dfdf9eaeb5890f03d599d3c6825b /drivers
parent0ef5f2d4d94464b8d5562327c9cf5b56fe93fff5 (diff)
video: tegra: dc: reduce HDCP re-negotiation delay
some HDCP verification devices requires fast HDCP re-negotiation after link verification failure. 1.75sec is too high to meet their requirement Bug 855002 Change-Id: I6f79606c20579d13ba504d2ff6d3ce6a01c7cbe9 Reviewed-on: http://git-master/r/44322 Reviewed-on: http://git-master/r/50794 Reviewed-by: Donghan Ryu <dryu@nvidia.com> Tested-by: Donghan Ryu <dryu@nvidia.com> Reviewed-by: Jon Mayo <jmayo@nvidia.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/video/tegra/dc/nvhdcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/tegra/dc/nvhdcp.c b/drivers/video/tegra/dc/nvhdcp.c
index 5ff53949864e..16d27cbccbd8 100644
--- a/drivers/video/tegra/dc/nvhdcp.c
+++ b/drivers/video/tegra/dc/nvhdcp.c
@@ -1008,11 +1008,11 @@ failure:
if(nvhdcp->fail_count > 5) {
nvhdcp_err("nvhdcp failure - too many failures, giving up!\n");
} else {
- nvhdcp_err("nvhdcp failure - renegotiating in 1.75 seconds\n");
+ nvhdcp_err("nvhdcp failure - renegotiating in 1 second\n");
if (!nvhdcp_is_plugged(nvhdcp))
goto lost_hdmi;
queue_delayed_work(nvhdcp->downstream_wq, &nvhdcp->work,
- msecs_to_jiffies(1750));
+ msecs_to_jiffies(1000));
}
lost_hdmi: