Skip to content

Commit d9600d5

Browse files
Riwen Luchanwoochoi
authored andcommitted
PM / devfreq: Fix typo in DFSO_DOWNDIFFERENTIAL macro name
Correct the spelling error in the DFSO_DOWNDIFFERENTIAL macro definition and update the corresponding variable assignment. The macro was previously misspelled as DFSO_DOWNDIFFERENCTIAL. This change ensures consistent and correct spelling throughout the simpleondemand governor implementation. Signed-off-by: Riwen Lu <luriwen@kylinos.cn> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com> Link: https://patchwork.kernel.org/project/linux-pm/patch/20251118032339.2799230-1-luriwen@kylinos.cn/
1 parent dc30fe7 commit d9600d5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/devfreq/governor_simpleondemand.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414

1515
/* Default constants for DevFreq-Simple-Ondemand (DFSO) */
1616
#define DFSO_UPTHRESHOLD (90)
17-
#define DFSO_DOWNDIFFERENCTIAL (5)
17+
#define DFSO_DOWNDIFFERENTIAL (5)
1818
static int devfreq_simple_ondemand_func(struct devfreq *df,
1919
unsigned long *freq)
2020
{
2121
int err;
2222
struct devfreq_dev_status *stat;
2323
unsigned long long a, b;
2424
unsigned int dfso_upthreshold = DFSO_UPTHRESHOLD;
25-
unsigned int dfso_downdifferential = DFSO_DOWNDIFFERENCTIAL;
25+
unsigned int dfso_downdifferential = DFSO_DOWNDIFFERENTIAL;
2626
struct devfreq_simple_ondemand_data *data = df->data;
2727

2828
err = devfreq_update_stats(df);

0 commit comments

Comments
 (0)