diff options
author | Diogo Ferreira <diogo@underdev.org> | 2017-05-07 11:00:12 +0100 |
---|---|---|
committer | Luca Stefani <luca020400@lineageos.org> | 2017-06-17 20:54:45 +0000 |
commit | 5985a61748f67fed9bc3243658d80d4292b43a0c (patch) | |
tree | 8802c03286bcd024aaf900a4fb45aee5d5fe0c41 | |
parent | ebff3b297e8b875d24a4eaf35feb6adceaeb5131 (diff) |
power: Use the correct opcode for STOR_CLK_SCALE_DIS
This is actually wrong, 0x42C0C000 is the opcode for SWAP_RATIO and
0x42C10000 is the correct opcode for storage clock scale disabling.
Change-Id: I6b1db525acf061ffe419011acd1f91525a27a35d
-rwxr-xr-x | power/performance.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/power/performance.h b/power/performance.h index 0378842..f28e886 100755 --- a/power/performance.h +++ b/power/performance.h @@ -322,7 +322,7 @@ enum SCHEDULER { }; enum STORAGE { - STOR_CLK_SCALE_DIS = 0x42C0C000, + STOR_CLK_SCALE_DIS = 0x42C10000, }; enum GPU { |