mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 10:09:10 +02:00
firmware: arm_scmi: Use proper iter_response_bound_cleanup() name
The documentation speaks of the "iter_response_bound_cleanup()" protocol helper, while the actual helper is called "iter_response_cleanup()". Settle on the former name, because the helper is only needed when using bound-iterators. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Cristian Marussi <cristian.marussi@arm.com> Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Link: https://patch.msgid.link/20260508153300.2224715-13-cristian.marussi@arm.com Signed-off-by: Sudeep Holla <sudeep.holla@kernel.org>
This commit is contained in:
parent
ae4a088f13
commit
3065e26dac
|
|
@ -1875,7 +1875,7 @@ static int __scmi_iterator_run(void *iter, unsigned int *start, unsigned int *en
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void scmi_iterator_cleanup(void *iter)
|
||||
static void scmi_iterator_bound_cleanup(void *iter)
|
||||
{
|
||||
struct scmi_iterator *i = iter;
|
||||
|
||||
|
|
@ -1888,7 +1888,7 @@ static int scmi_iterator_run(void *iter)
|
|||
int ret;
|
||||
|
||||
ret = __scmi_iterator_run(iter, NULL, NULL);
|
||||
scmi_iterator_cleanup(iter);
|
||||
scmi_iterator_bound_cleanup(iter);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
|
@ -2078,7 +2078,7 @@ static const struct scmi_proto_helpers_ops helpers_ops = {
|
|||
.iter_response_init = scmi_iterator_init,
|
||||
.iter_response_run = scmi_iterator_run,
|
||||
.iter_response_run_bound = scmi_iterator_run_bound,
|
||||
.iter_response_cleanup = scmi_iterator_cleanup,
|
||||
.iter_response_bound_cleanup = scmi_iterator_bound_cleanup,
|
||||
.protocol_msg_check = scmi_protocol_msg_check,
|
||||
.fastchannel_init = scmi_common_fastchannel_init,
|
||||
.fastchannel_db_ring = scmi_common_fastchannel_db_ring,
|
||||
|
|
|
|||
|
|
@ -286,7 +286,7 @@ struct scmi_proto_helpers_ops {
|
|||
int (*iter_response_run)(void *iter);
|
||||
int (*iter_response_run_bound)(void *iter,
|
||||
unsigned int *start, unsigned int *end);
|
||||
void (*iter_response_cleanup)(void *iter);
|
||||
void (*iter_response_bound_cleanup)(void *iter);
|
||||
int (*protocol_msg_check)(const struct scmi_protocol_handle *ph,
|
||||
u32 message_id, u32 *attributes);
|
||||
void (*fastchannel_init)(const struct scmi_protocol_handle *ph,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user