powerHAL: Removes the refresh rate throttling when the device is in low
power mode.

This is an experimental change to see the impact of each individual
feature of the low power mode.

Bug: 15285833
Change-Id: I0a9a3fcd2ae0c5d404d0fba054c3d89771696f21
Signed-of-by: Ruchi Kandoi <kandoiruchi@google.com>
diff --git a/power/power_hammerhead.c b/power/power_hammerhead.c
index d025f3a..49eabb5 100644
--- a/power/power_hammerhead.c
+++ b/power/power_hammerhead.c
@@ -368,8 +368,6 @@
                          freq_set[cpu] = true;
                      }
                  }
-                 // reduces the refresh rate
-                 system("service call SurfaceFlinger 1016");
              } else {
                  low_power_mode = false;
                  for (cpu = 0; cpu < TOTAL_CPUS; cpu++) {
@@ -378,8 +376,6 @@
                          freq_set[cpu] = false;
                      }
                  }
-                 // restores the refresh rate
-                 system("service call SurfaceFlinger 1017");
              }
              pthread_mutex_unlock(&low_power_mode_lock);
              break;