From 40ebfd40fcdffd514d978cc6e36a6f8de106739e Mon Sep 17 00:00:00 2001 From: Sameer Nanda Date: Thu, 17 Jan 2013 13:34:31 -0800 Subject: temp_metrics: set GPU min frequency to 450 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed the check for modem device and now unconditionally setting the GPU min frequency to 450. BUG=chrome-os-partner:16439 TEST="cat /sys/kernel/debug/dri/0/i915_min_freq" and verify that it returns 450 for systems with and without modem device. BRANCH=none Change-Id: I34d176e65420834a85a02755bad11124432ac33f Signed-off-by: Sameer Nanda Reviewed-on: https://gerrit.chromium.org/gerrit/41564 Reviewed-by: Vincent Palatin Reviewed-by: Stéphane Marchesin --- util/temp_metrics.conf | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/util/temp_metrics.conf b/util/temp_metrics.conf index d9c3b4f063..394425c1f7 100644 --- a/util/temp_metrics.conf +++ b/util/temp_metrics.conf @@ -143,11 +143,7 @@ script } set_gpu_min_freq() { - GPU_MIN_FREQ=350 - if lsusb -d 1410:9010; then - # Set min GPU freq to 450 to reduce intereference with modem. - GPU_MIN_FREQ=450 - fi + GPU_MIN_FREQ=450 echo $GPU_MIN_FREQ > /sys/kernel/debug/dri/0/i915_min_freq } -- cgit v1.2.1