Skip to content

Commit

Permalink
Merge tag 'pmdomain-v6.7-rc2' of git://git.kernel.org/pub/scm/linux/k…
Browse files Browse the repository at this point in the history
…ernel/git/ulfh/linux-pm

Pull pmdomain fix from Ulf Hansson:

 - Avoid polling for the scmi_perf_domain on arm

* tag 'pmdomain-v6.7-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/linux-pm:
  pmdomain: arm: Avoid polling for scmi_perf_domain
  • Loading branch information
Linus Torvalds committed Nov 30, 2023
2 parents 09443a1 + 0cb19e5 commit e8f6020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/pmdomain/arm/scmi_perf_domain.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ scmi_pd_set_perf_state(struct generic_pm_domain *genpd, unsigned int state)
if (!state)
return -EINVAL;

ret = pd->perf_ops->level_set(pd->ph, pd->domain_id, state, true);
ret = pd->perf_ops->level_set(pd->ph, pd->domain_id, state, false);
if (ret)
dev_warn(&genpd->dev, "Failed with %d when trying to set %d perf level",
ret, state);
Expand Down

0 comments on commit e8f6020

Please sign in to comment.