1
0
Fork 0

PM / devfreq: Use constant name of userspace governor

Based on commit aa7c352f98 ("PM / devfreq: Define the constant governor
name"), use constant name for userspace governor.

Signed-off-by: pierre Kuo <vichy.kuo@gmail.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
alistair/sensors
pierre Kuo 2020-01-23 23:59:12 +08:00 committed by Chanwoo Choi
parent 16fbf79b0f
commit 4bb1faaccf
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ static int devfreq_userspace_handler(struct devfreq *devfreq,
}
static struct devfreq_governor devfreq_userspace = {
.name = "userspace",
.name = DEVFREQ_GOV_USERSPACE,
.get_target_freq = devfreq_userspace_func,
.event_handler = devfreq_userspace_handler,
};