diff options
author | Peng Fan <peng.fan@nxp.com> | 2025-08-31 14:52:37 +0800 |
---|---|---|
committer | Sudeep Holla <sudeep.holla@arm.com> | 2025-09-02 11:21:34 +0100 |
commit | 72ca981dba5e98c2b1c2956016cc4be934d9fbea (patch) | |
tree | 7e130b0b10b9ebc021a0dac698d0c694c3972375 | |
parent | e8faa8a466f61f4ae07069ed6b0872f602f1cba9 (diff) |
firmware: arm_scmi: Fix function name typo in scmi_perf_proto_ops struct
The performance protocol ops table incorrectly referenced
power_scale_mw_get instead of the correct power_scale_get.
Fix the typo to use the proper function.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Message-Id: <20250831-scmi-cpufreq-v1-1-493031cf6e9b@nxp.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
-rw-r--r-- | include/linux/scmi_protocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/scmi_protocol.h b/include/linux/scmi_protocol.h index 688466a0e816..aafaac1496b0 100644 --- a/include/linux/scmi_protocol.h +++ b/include/linux/scmi_protocol.h @@ -153,7 +153,7 @@ struct scmi_perf_domain_info { * for a given device * @fast_switch_rate_limit: gets the minimum time (us) required between * successive fast_switching requests - * @power_scale_mw_get: indicates if the power values provided are in milliWatts + * @power_scale_get: indicates if the power values provided are in milliWatts * or in some other (abstract) scale */ struct scmi_perf_proto_ops { |