pm: remove irrelevant type qualifier on pm_power_state_next_get

The type qualifier of the return type is causing warnings if
-Wignored-qualifiers, and it's irrelevant anyways since
the function returns a value and not a pointer

Signed-off-by: Emil Lindqvist <emil@lindq.gr>
This commit is contained in:
Emil Lindqvist 2021-11-30 10:44:30 +01:00 committed by Maureen Helm
commit 5af3bbb27b
2 changed files with 2 additions and 2 deletions

View file

@ -111,7 +111,7 @@ int pm_notifier_unregister(struct pm_notifier *notifier);
* @param cpu CPU index.
* @return next pm_state_info that will be used
*/
const struct pm_state_info pm_power_state_next_get(uint8_t cpu);
struct pm_state_info pm_power_state_next_get(uint8_t cpu);
/**
* @}