[PATCH] mailbox: correct kdoc title for mbox_bind_client

Wolfram Sang posted 1 patch 1 month, 3 weeks ago
drivers/mailbox/mailbox.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] mailbox: correct kdoc title for mbox_bind_client
Posted by Wolfram Sang 1 month, 3 weeks ago
"Request" is wrong, there is a separate function for requesting. This
functions binds, so describe this.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
 drivers/mailbox/mailbox.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mailbox/mailbox.c b/drivers/mailbox/mailbox.c
index 617ba505691d..e63b2292ee7a 100644
--- a/drivers/mailbox/mailbox.c
+++ b/drivers/mailbox/mailbox.c
@@ -341,7 +341,7 @@ static int __mbox_bind_client(struct mbox_chan *chan, struct mbox_client *cl)
 }
 
 /**
- * mbox_bind_client - Request a mailbox channel.
+ * mbox_bind_client - Bind client to a mailbox channel.
  * @chan: The mailbox channel to bind the client to.
  * @cl: Identity of the client requesting the channel.
  *
-- 
2.51.0
Re: [PATCH] mailbox: correct kdoc title for mbox_bind_client
Posted by Jassi Brar 2 weeks, 4 days ago
On Mon, Feb 23, 2026 at 6:21 AM Wolfram Sang
<wsa+renesas@sang-engineering.com> wrote:
>
> "Request" is wrong, there is a separate function for requesting. This
> functions binds, so describe this.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> ---
>  drivers/mailbox/mailbox.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mailbox/mailbox.c b/drivers/mailbox/mailbox.c
> index 617ba505691d..e63b2292ee7a 100644
> --- a/drivers/mailbox/mailbox.c
> +++ b/drivers/mailbox/mailbox.c
> @@ -341,7 +341,7 @@ static int __mbox_bind_client(struct mbox_chan *chan, struct mbox_client *cl)
>  }
>
>  /**
> - * mbox_bind_client - Request a mailbox channel.
> + * mbox_bind_client - Bind client to a mailbox channel.
>   * @chan: The mailbox channel to bind the client to.
>   * @cl: Identity of the client requesting the channel.
>   *
> --
> 2.51.0
>
Applied to mailbox/for-next
Thanks
Jassi