Skip to content

Commit 9865295

Browse files
wzyy2yihsin-hung
authored andcommitted
cpufreq: dt: correct judgment of the package_info
rk3288: 0xf0 rk3288c: 0xc0 Change-Id: Ie677277ea042eb9b83c2ba1bae75d73933ee5d4e Signed-off-by: Jacob Chen <jacob2.chen@rock-chips.com>
1 parent 2d5c66c commit 9865295

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/cpufreq/cpufreq-dt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ static int set_opp_info(struct device *dev)
112112
if (count == 0)
113113
return 0;
114114

115-
if ((package_info & 0xc0) == 0xc0) {
115+
if ((package_info & 0xf0) == 0xc0) {
116116
chip_vesion = 1;
117117
apll_safefreq = ULONG_MAX;
118118
} else {

0 commit comments

Comments
 (0)