diff mbox series

[v2,-next] gpio: max77620: convert comma to semicolon

Message ID 20210108092405.19291-1-zhengyongjun3@huawei.com
State Accepted
Commit de49e83c21209a2f128fc9248eebb6cb58d85996
Headers show
Series [v2,-next] gpio: max77620: convert comma to semicolon | expand

Commit Message

Zheng Yongjun Jan. 8, 2021, 9:24 a.m. UTC
Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
---
 drivers/gpio/gpio-max77620.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Bartosz Golaszewski Jan. 22, 2021, 12:01 p.m. UTC | #1
On Fri, Jan 8, 2021 at 10:23 AM Zheng Yongjun <zhengyongjun3@huawei.com> wrote:
>

> Replace a comma between expression statements by a semicolon.

>

> Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>

> ---

>  drivers/gpio/gpio-max77620.c | 2 +-

>  1 file changed, 1 insertion(+), 1 deletion(-)

>

> diff --git a/drivers/gpio/gpio-max77620.c b/drivers/gpio/gpio-max77620.c

> index 7c0a9ef0b500..82b3a913005d 100644

> --- a/drivers/gpio/gpio-max77620.c

> +++ b/drivers/gpio/gpio-max77620.c

> @@ -325,7 +325,7 @@ static int max77620_gpio_probe(struct platform_device *pdev)

>         girq->parents = NULL;

>         girq->default_type = IRQ_TYPE_NONE;

>         girq->handler = handle_edge_irq;

> -       girq->init_hw = max77620_gpio_irq_init_hw,

> +       girq->init_hw = max77620_gpio_irq_init_hw;

>         girq->threaded = true;

>

>         platform_set_drvdata(pdev, mgpio);

> --

> 2.22.0

>


Applied, thanks!

Bartosz
diff mbox series

Patch

diff --git a/drivers/gpio/gpio-max77620.c b/drivers/gpio/gpio-max77620.c
index 7c0a9ef0b500..82b3a913005d 100644
--- a/drivers/gpio/gpio-max77620.c
+++ b/drivers/gpio/gpio-max77620.c
@@ -325,7 +325,7 @@  static int max77620_gpio_probe(struct platform_device *pdev)
 	girq->parents = NULL;
 	girq->default_type = IRQ_TYPE_NONE;
 	girq->handler = handle_edge_irq;
-	girq->init_hw = max77620_gpio_irq_init_hw,
+	girq->init_hw = max77620_gpio_irq_init_hw;
 	girq->threaded = true;
 
 	platform_set_drvdata(pdev, mgpio);