power: Update for PerformanceManager changes

PerformanceManager is again compatible with AOSP, so undo
part of the changes not to crash the HAL.

Change-Id: Ifeaae04fff8cafb4df3becc87dfdbeae48006ee3
This commit is contained in:
Gabriele M 2017-04-03 00:00:00 +02:00 committed by Mister Oyster
parent 489eebb4c0
commit a6736df7ff
1 changed files with 1 additions and 3 deletions

View File

@ -64,11 +64,9 @@ static void power_fwrite(const char *path, char *s)
static void power_hint(struct power_module *module, power_hint_t hint,
void *data) {
int32_t dataint = -1;
switch (hint) {
case POWER_HINT_LOW_POWER:
dataint = *(int32_t *)data;
if (dataint) {
if (data) {
power_fwrite(MT_FPS_UPPER_BOUND_PATH, "30");
power_fwrite(MT_RUSH_BOOST_PATH, "0");
} else {