[PATCH] Documentation: gpio: Fix bracket

Manuel Ebner posted 1 patch 3 weeks, 1 day ago
Documentation/driver-api/gpio/board.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] Documentation: gpio: Fix bracket
Posted by Manuel Ebner 3 weeks, 1 day ago
Balance parentheses.

Signed-off-by: Manuel Ebner <manuelebnerli@mailbox.org>
---
 Documentation/driver-api/gpio/board.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/driver-api/gpio/board.rst b/Documentation/driver-api/gpio/board.rst
index 4ac1e12cf..83b74843e 100644
--- a/Documentation/driver-api/gpio/board.rst
+++ b/Documentation/driver-api/gpio/board.rst
@@ -55,7 +55,7 @@ looked up by the gpiod functions internally) used in the device tree. With above
 
 Internally, the GPIO subsystem prefixes the GPIO suffix ("gpios" or "gpio")
 with the string passed in con_id to get the resulting string
-(``snprintf(... "%s-%s", con_id, gpio_suffixes[]``).
+(``snprintf(... "%s-%s", con_id, gpio_suffixes[])``).
 
 ACPI
 ----
-- 
2.54.0
Re: [PATCH] Documentation: gpio: Fix bracket
Posted by Bartosz Golaszewski 2 weeks, 4 days ago
On Thu, 03 Sep 2026 17:53:44 +0200, Manuel Ebner wrote:
> Balance parentheses.
> 
> 

Applied, thanks!

[1/1] Documentation: gpio: Fix bracket
      https://git.kernel.org/brgl/c/31e7eb7e38978f6edb6523e43f3d8738e1837d3f

Best regards,
-- 
Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Re: [PATCH] Documentation: gpio: Fix bracket
Posted by Randy Dunlap 3 weeks, 1 day ago

On 9/3/26 8:53 AM, Manuel Ebner wrote:
> Balance parentheses.
> 
> Signed-off-by: Manuel Ebner <manuelebnerli@mailbox.org>

Acked-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.

> ---
>  Documentation/driver-api/gpio/board.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/driver-api/gpio/board.rst b/Documentation/driver-api/gpio/board.rst
> index 4ac1e12cf..83b74843e 100644
> --- a/Documentation/driver-api/gpio/board.rst
> +++ b/Documentation/driver-api/gpio/board.rst
> @@ -55,7 +55,7 @@ looked up by the gpiod functions internally) used in the device tree. With above
>  
>  Internally, the GPIO subsystem prefixes the GPIO suffix ("gpios" or "gpio")
>  with the string passed in con_id to get the resulting string
> -(``snprintf(... "%s-%s", con_id, gpio_suffixes[]``).
> +(``snprintf(... "%s-%s", con_id, gpio_suffixes[])``).
>  
>  ACPI
>  ----

-- 
~Randy