* [PATCH 0/6] pinctrl: Remove unneded semicolons in drivers
@ 2015-09-16 8:28 Javier Martinez Canillas
2015-09-16 8:28 ` [PATCH 1/6] pinctrl: tz1090: Remove unneded semicolons Javier Martinez Canillas
` (5 more replies)
0 siblings, 6 replies; 18+ messages in thread
From: Javier Martinez Canillas @ 2015-09-16 8:28 UTC (permalink / raw)
To: linux-kernel
Cc: Javier Martinez Canillas, Axel Lin, Thierry Reding, Shawn Guo,
Linus Walleij, Wei Chen, Tomasz Figa, linux-samsung-soc,
Thomas Gleixner, Hans de Goede, Maoguang Meng,
Krzysztof Kozlowski, Yingjoe Chen, Colin Ian King,
Matthias Brugger, Kukjin Kim, Jiang Liu, linux-gpio,
linux-mediatek, linux-arm-kernel, Masahiro Yamada, Hongzhou Yang
Hello Linus,
This series contains trivial patches that removes unneeded
semicolons in pinctrl drivers. These are clearly typo errors
and are just creating null statements.
Best regards,
Javier
Javier Martinez Canillas (6):
pinctrl: tz1090: Remove unneded semicolons
pinctrl: tz1090-pdc: Remove unneded semicolons
pinctrl: mxs: Remove unneded semicolon
pinctrl: sunxi: Remove unneeded semicolon
pinctrl: mediatek: Remove unneded semicolon
pinctrl: samsung: Remove unneded semicolon
drivers/pinctrl/freescale/pinctrl-mxs.c | 2 +-
drivers/pinctrl/mediatek/pinctrl-mtk-common.c | 2 +-
drivers/pinctrl/pinctrl-tz1090-pdc.c | 4 ++--
drivers/pinctrl/pinctrl-tz1090.c | 4 ++--
drivers/pinctrl/samsung/pinctrl-exynos5440.c | 2 +-
drivers/pinctrl/sunxi/pinctrl-sunxi.c | 2 +-
6 files changed, 8 insertions(+), 8 deletions(-)
--
2.4.3
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH 1/6] pinctrl: tz1090: Remove unneded semicolons
2015-09-16 8:28 [PATCH 0/6] pinctrl: Remove unneded semicolons in drivers Javier Martinez Canillas
@ 2015-09-16 8:28 ` Javier Martinez Canillas
2015-10-02 10:16 ` Linus Walleij
2015-09-16 8:28 ` [PATCH 2/6] pinctrl: tz1090-pdc: " Javier Martinez Canillas
` (4 subsequent siblings)
5 siblings, 1 reply; 18+ messages in thread
From: Javier Martinez Canillas @ 2015-09-16 8:28 UTC (permalink / raw)
To: linux-kernel; +Cc: Javier Martinez Canillas, linux-gpio, Linus Walleij
They aren't needed and are just creating null statements so remove it.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
---
drivers/pinctrl/pinctrl-tz1090.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/pinctrl/pinctrl-tz1090.c b/drivers/pinctrl/pinctrl-tz1090.c
index 6d07a2f64d97..5425299d759d 100644
--- a/drivers/pinctrl/pinctrl-tz1090.c
+++ b/drivers/pinctrl/pinctrl-tz1090.c
@@ -1661,7 +1661,7 @@ static int tz1090_pinconf_reg(struct pinctrl_dev *pctldev,
break;
default:
return -ENOTSUPP;
- };
+ }
/* Only input bias parameters supported */
pu = &tz1090_pinconf_pullup[pin];
@@ -1790,7 +1790,7 @@ static int tz1090_pinconf_group_reg(struct pinctrl_dev *pctldev,
break;
default:
return -ENOTSUPP;
- };
+ }
/* Calculate field information */
*shift = g->slw_bit * *width;
--
2.4.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 2/6] pinctrl: tz1090-pdc: Remove unneded semicolons
2015-09-16 8:28 [PATCH 0/6] pinctrl: Remove unneded semicolons in drivers Javier Martinez Canillas
2015-09-16 8:28 ` [PATCH 1/6] pinctrl: tz1090: Remove unneded semicolons Javier Martinez Canillas
@ 2015-09-16 8:28 ` Javier Martinez Canillas
2015-10-02 10:17 ` Linus Walleij
2015-09-16 8:28 ` [PATCH 3/6] pinctrl: mxs: Remove unneded semicolon Javier Martinez Canillas
` (3 subsequent siblings)
5 siblings, 1 reply; 18+ messages in thread
From: Javier Martinez Canillas @ 2015-09-16 8:28 UTC (permalink / raw)
To: linux-kernel; +Cc: Javier Martinez Canillas, linux-gpio, Linus Walleij
They aren't needed and are just creating null statements so remove it.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
---
drivers/pinctrl/pinctrl-tz1090-pdc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/pinctrl/pinctrl-tz1090-pdc.c b/drivers/pinctrl/pinctrl-tz1090-pdc.c
index c349911708ef..b89ad3c0c731 100644
--- a/drivers/pinctrl/pinctrl-tz1090-pdc.c
+++ b/drivers/pinctrl/pinctrl-tz1090-pdc.c
@@ -668,7 +668,7 @@ static int tz1090_pdc_pinconf_reg(struct pinctrl_dev *pctldev,
break;
default:
return -ENOTSUPP;
- };
+ }
/* Only input bias parameters supported */
*reg = REG_GPIO_CONTROL2;
@@ -801,7 +801,7 @@ static int tz1090_pdc_pinconf_group_reg(struct pinctrl_dev *pctldev,
break;
default:
return -ENOTSUPP;
- };
+ }
/* Calculate field information */
*mask = (BIT(*width) - 1) << *shift;
--
2.4.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 3/6] pinctrl: mxs: Remove unneded semicolon
2015-09-16 8:28 [PATCH 0/6] pinctrl: Remove unneded semicolons in drivers Javier Martinez Canillas
2015-09-16 8:28 ` [PATCH 1/6] pinctrl: tz1090: Remove unneded semicolons Javier Martinez Canillas
2015-09-16 8:28 ` [PATCH 2/6] pinctrl: tz1090-pdc: " Javier Martinez Canillas
@ 2015-09-16 8:28 ` Javier Martinez Canillas
2015-09-16 8:31 ` Uwe Kleine-König
2015-10-02 10:18 ` Linus Walleij
2015-09-16 8:28 ` [PATCH 4/6] pinctrl: sunxi: Remove unneeded semicolon Javier Martinez Canillas
` (2 subsequent siblings)
5 siblings, 2 replies; 18+ messages in thread
From: Javier Martinez Canillas @ 2015-09-16 8:28 UTC (permalink / raw)
To: linux-kernel
Cc: Javier Martinez Canillas, Hongzhou Yang, Masahiro Yamada,
Thierry Reding, Shawn Guo, Linus Walleij, linux-gpio,
Uwe Kleine-König, Wei Chen
It's not needed an is just creating a null statement, so remove it.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
---
drivers/pinctrl/freescale/pinctrl-mxs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pinctrl/freescale/pinctrl-mxs.c b/drivers/pinctrl/freescale/pinctrl-mxs.c
index f64eecb24755..6bbda6b4ab50 100644
--- a/drivers/pinctrl/freescale/pinctrl-mxs.c
+++ b/drivers/pinctrl/freescale/pinctrl-mxs.c
@@ -474,7 +474,7 @@ static int mxs_pinctrl_probe_dt(struct platform_device *pdev,
f->name = fn = child->name;
}
f->ngroups++;
- };
+ }
/* Get groups for each function */
idxf = 0;
--
2.4.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 4/6] pinctrl: sunxi: Remove unneeded semicolon
2015-09-16 8:28 [PATCH 0/6] pinctrl: Remove unneded semicolons in drivers Javier Martinez Canillas
` (2 preceding siblings ...)
2015-09-16 8:28 ` [PATCH 3/6] pinctrl: mxs: Remove unneded semicolon Javier Martinez Canillas
@ 2015-09-16 8:28 ` Javier Martinez Canillas
2015-09-16 8:41 ` Maxime Ripard
2015-10-02 10:19 ` Linus Walleij
[not found] ` <1442392111-8448-1-git-send-email-javier-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
2015-09-16 8:28 ` [PATCH 6/6] pinctrl: samsung: " Javier Martinez Canillas
5 siblings, 2 replies; 18+ messages in thread
From: Javier Martinez Canillas @ 2015-09-16 8:28 UTC (permalink / raw)
To: linux-kernel
Cc: Hans de Goede, Masahiro Yamada, Linus Walleij, Maxime Ripard,
Javier Martinez Canillas, Alexandre Courbot, linux-gpio,
Thomas Gleixner, Jiang Liu, linux-arm-kernel
It's not needed an is just creating a null statement, so remove it.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
---
drivers/pinctrl/sunxi/pinctrl-sunxi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pinctrl/sunxi/pinctrl-sunxi.c b/drivers/pinctrl/sunxi/pinctrl-sunxi.c
index fb4669c0ce0e..d3428709b0a6 100644
--- a/drivers/pinctrl/sunxi/pinctrl-sunxi.c
+++ b/drivers/pinctrl/sunxi/pinctrl-sunxi.c
@@ -1031,7 +1031,7 @@ int sunxi_pinctrl_init(struct platform_device *pdev,
irq_set_chip_and_handler(irqno, &sunxi_pinctrl_edge_irq_chip,
handle_edge_irq);
irq_set_chip_data(irqno, pctl);
- };
+ }
for (i = 0; i < pctl->desc->irq_banks; i++) {
/* Mask and clear all IRQs before registering a handler */
--
2.4.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 5/6] pinctrl: mediatek: Remove unneded semicolon
[not found] ` <1442392111-8448-1-git-send-email-javier-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
@ 2015-09-16 8:28 ` Javier Martinez Canillas
[not found] ` <1442392111-8448-6-git-send-email-javier-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
2015-10-02 10:21 ` Linus Walleij
0 siblings, 2 replies; 18+ messages in thread
From: Javier Martinez Canillas @ 2015-09-16 8:28 UTC (permalink / raw)
To: linux-kernel-u79uwXL29TY76Z2rM5mHXA
Cc: Maoguang Meng, Axel Lin, linux-gpio-u79uwXL29TY76Z2rM5mHXA,
Hongzhou Yang, Linus Walleij, Javier Martinez Canillas,
linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Colin Ian King,
Matthias Brugger, Yingjoe Chen,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
It's not needed an is just creating a null statement, so remove it.
Signed-off-by: Javier Martinez Canillas <javier-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
---
drivers/pinctrl/mediatek/pinctrl-mtk-common.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pinctrl/mediatek/pinctrl-mtk-common.c b/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
index 7726c6caaf83..652ec125adb3 100644
--- a/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
+++ b/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
@@ -1436,7 +1436,7 @@ int mtk_pctrl_init(struct platform_device *pdev,
irq_set_chip_and_handler(virq, &mtk_pinctrl_irq_chip,
handle_level_irq);
irq_set_chip_data(virq, pctl);
- };
+ }
irq_set_chained_handler_and_data(irq, mtk_eint_irq_handler, pctl);
return 0;
--
2.4.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 6/6] pinctrl: samsung: Remove unneded semicolon
2015-09-16 8:28 [PATCH 0/6] pinctrl: Remove unneded semicolons in drivers Javier Martinez Canillas
` (4 preceding siblings ...)
[not found] ` <1442392111-8448-1-git-send-email-javier-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
@ 2015-09-16 8:28 ` Javier Martinez Canillas
2015-09-17 7:55 ` Krzysztof Kozlowski
2015-10-02 10:25 ` Linus Walleij
5 siblings, 2 replies; 18+ messages in thread
From: Javier Martinez Canillas @ 2015-09-16 8:28 UTC (permalink / raw)
To: linux-kernel
Cc: Javier Martinez Canillas, linux-samsung-soc, Krzysztof Kozlowski,
Linus Walleij, linux-gpio, Kukjin Kim, Tomasz Figa,
linux-arm-kernel
It's not needed an is just creating a null statement, so remove it.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
---
drivers/pinctrl/samsung/pinctrl-exynos5440.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pinctrl/samsung/pinctrl-exynos5440.c b/drivers/pinctrl/samsung/pinctrl-exynos5440.c
index 9ce0b8619d4c..82dc109f7ed4 100644
--- a/drivers/pinctrl/samsung/pinctrl-exynos5440.c
+++ b/drivers/pinctrl/samsung/pinctrl-exynos5440.c
@@ -284,7 +284,7 @@ static void exynos5440_dt_free_map(struct pinctrl_dev *pctldev,
if (!idx)
kfree(map[idx].data.configs.group_or_pin);
}
- };
+ }
kfree(map);
}
--
2.4.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH 3/6] pinctrl: mxs: Remove unneded semicolon
2015-09-16 8:28 ` [PATCH 3/6] pinctrl: mxs: Remove unneded semicolon Javier Martinez Canillas
@ 2015-09-16 8:31 ` Uwe Kleine-König
2015-10-02 10:18 ` Linus Walleij
1 sibling, 0 replies; 18+ messages in thread
From: Uwe Kleine-König @ 2015-09-16 8:31 UTC (permalink / raw)
To: Javier Martinez Canillas
Cc: linux-kernel, Hongzhou Yang, Masahiro Yamada, Thierry Reding,
Shawn Guo, Linus Walleij, linux-gpio, Wei Chen
Hello,
On Wed, Sep 16, 2015 at 10:28:28AM +0200, Javier Martinez Canillas wrote:
> It's not needed an is just creating a null statement, so remove it.
>
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Thanks
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 4/6] pinctrl: sunxi: Remove unneeded semicolon
2015-09-16 8:28 ` [PATCH 4/6] pinctrl: sunxi: Remove unneeded semicolon Javier Martinez Canillas
@ 2015-09-16 8:41 ` Maxime Ripard
2015-10-02 10:19 ` Linus Walleij
1 sibling, 0 replies; 18+ messages in thread
From: Maxime Ripard @ 2015-09-16 8:41 UTC (permalink / raw)
To: Javier Martinez Canillas
Cc: linux-kernel, Jiang Liu, Masahiro Yamada, Linus Walleij,
Alexandre Courbot, Hans de Goede, linux-gpio, Thomas Gleixner,
linux-arm-kernel
[-- Attachment #1: Type: text/plain, Size: 412 bytes --]
On Wed, Sep 16, 2015 at 10:28:29AM +0200, Javier Martinez Canillas wrote:
> It's not needed an is just creating a null statement, so remove it.
>
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Thanks!
Maxime
--
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5/6] pinctrl: mediatek: Remove unneded semicolon
[not found] ` <1442392111-8448-6-git-send-email-javier-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
@ 2015-09-16 18:36 ` Hongzhou Yang
0 siblings, 0 replies; 18+ messages in thread
From: Hongzhou Yang @ 2015-09-16 18:36 UTC (permalink / raw)
To: Javier Martinez Canillas
Cc: Maoguang Meng, Axel Lin, Linus Walleij,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-gpio-u79uwXL29TY76Z2rM5mHXA,
linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Colin Ian King,
Matthias Brugger, Yingjoe Chen,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
On Wed, 2015-09-16 at 10:28 +0200, Javier Martinez Canillas wrote:
> It's not needed an is just creating a null statement, so remove it.
>
> Signed-off-by: Javier Martinez Canillas <javier-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
> ---
>
> drivers/pinctrl/mediatek/pinctrl-mtk-common.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/pinctrl/mediatek/pinctrl-mtk-common.c b/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
> index 7726c6caaf83..652ec125adb3 100644
> --- a/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
> +++ b/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
> @@ -1436,7 +1436,7 @@ int mtk_pctrl_init(struct platform_device *pdev,
> irq_set_chip_and_handler(virq, &mtk_pinctrl_irq_chip,
> handle_level_irq);
> irq_set_chip_data(virq, pctl);
> - };
> + }
>
> irq_set_chained_handler_and_data(irq, mtk_eint_irq_handler, pctl);
> return 0;
Acked-by: Hongzhou Yang <hongzhou.yang-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>
Thanks
Hongzhou
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 6/6] pinctrl: samsung: Remove unneded semicolon
2015-09-16 8:28 ` [PATCH 6/6] pinctrl: samsung: " Javier Martinez Canillas
@ 2015-09-17 7:55 ` Krzysztof Kozlowski
2015-10-02 10:25 ` Linus Walleij
1 sibling, 0 replies; 18+ messages in thread
From: Krzysztof Kozlowski @ 2015-09-17 7:55 UTC (permalink / raw)
To: Javier Martinez Canillas, linux-kernel
Cc: linux-samsung-soc, Linus Walleij, linux-gpio, Kukjin Kim,
Tomasz Figa, linux-arm-kernel
On 16.09.2015 17:28, Javier Martinez Canillas wrote:
> It's not needed an is just creating a null statement, so remove it.
>
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
>
> ---
>
> drivers/pinctrl/samsung/pinctrl-exynos5440.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
Quite obvious and pointed out by coccicheck, so:
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/6] pinctrl: tz1090: Remove unneded semicolons
2015-09-16 8:28 ` [PATCH 1/6] pinctrl: tz1090: Remove unneded semicolons Javier Martinez Canillas
@ 2015-10-02 10:16 ` Linus Walleij
0 siblings, 0 replies; 18+ messages in thread
From: Linus Walleij @ 2015-10-02 10:16 UTC (permalink / raw)
To: Javier Martinez Canillas
Cc: linux-kernel@vger.kernel.org, linux-gpio@vger.kernel.org
On Wed, Sep 16, 2015 at 1:28 AM, Javier Martinez Canillas
<javier@osg.samsung.com> wrote:
> They aren't needed and are just creating null statements so remove it.
>
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Patch applied.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 2/6] pinctrl: tz1090-pdc: Remove unneded semicolons
2015-09-16 8:28 ` [PATCH 2/6] pinctrl: tz1090-pdc: " Javier Martinez Canillas
@ 2015-10-02 10:17 ` Linus Walleij
0 siblings, 0 replies; 18+ messages in thread
From: Linus Walleij @ 2015-10-02 10:17 UTC (permalink / raw)
To: Javier Martinez Canillas
Cc: linux-kernel@vger.kernel.org, linux-gpio@vger.kernel.org
On Wed, Sep 16, 2015 at 1:28 AM, Javier Martinez Canillas
<javier@osg.samsung.com> wrote:
> They aren't needed and are just creating null statements so remove it.
>
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Patch applied.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 3/6] pinctrl: mxs: Remove unneded semicolon
2015-09-16 8:28 ` [PATCH 3/6] pinctrl: mxs: Remove unneded semicolon Javier Martinez Canillas
2015-09-16 8:31 ` Uwe Kleine-König
@ 2015-10-02 10:18 ` Linus Walleij
2015-10-02 11:48 ` Uwe Kleine-König
1 sibling, 1 reply; 18+ messages in thread
From: Linus Walleij @ 2015-10-02 10:18 UTC (permalink / raw)
To: Javier Martinez Canillas
Cc: linux-kernel@vger.kernel.org, Hongzhou Yang, Masahiro Yamada,
Thierry Reding, Shawn Guo, linux-gpio@vger.kernel.org,
Uwe Kleine-König, Wei Chen
On Wed, Sep 16, 2015 at 1:28 AM, Javier Martinez Canillas
<javier@osg.samsung.com> wrote:
> It's not needed an is just creating a null statement, so remove it.
>
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Patch applied with Uwe's ACK.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 4/6] pinctrl: sunxi: Remove unneeded semicolon
2015-09-16 8:28 ` [PATCH 4/6] pinctrl: sunxi: Remove unneeded semicolon Javier Martinez Canillas
2015-09-16 8:41 ` Maxime Ripard
@ 2015-10-02 10:19 ` Linus Walleij
1 sibling, 0 replies; 18+ messages in thread
From: Linus Walleij @ 2015-10-02 10:19 UTC (permalink / raw)
To: Javier Martinez Canillas
Cc: linux-kernel@vger.kernel.org, Jiang Liu, Masahiro Yamada,
Alexandre Courbot, Hans de Goede, linux-gpio@vger.kernel.org,
Thomas Gleixner, Maxime Ripard,
linux-arm-kernel@lists.infradead.org
On Wed, Sep 16, 2015 at 1:28 AM, Javier Martinez Canillas
<javier@osg.samsung.com> wrote:
> It's not needed an is just creating a null statement, so remove it.
>
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Patch applied with Maxime's ACK.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5/6] pinctrl: mediatek: Remove unneded semicolon
2015-09-16 8:28 ` [PATCH 5/6] pinctrl: mediatek: Remove unneded semicolon Javier Martinez Canillas
[not found] ` <1442392111-8448-6-git-send-email-javier-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
@ 2015-10-02 10:21 ` Linus Walleij
1 sibling, 0 replies; 18+ messages in thread
From: Linus Walleij @ 2015-10-02 10:21 UTC (permalink / raw)
To: Javier Martinez Canillas
Cc: linux-kernel@vger.kernel.org, Hongzhou Yang, Axel Lin,
linux-gpio@vger.kernel.org, Maoguang Meng, linux-mediatek,
linux-arm-kernel@lists.infradead.org, Yingjoe Chen,
Colin Ian King, Matthias Brugger
On Wed, Sep 16, 2015 at 1:28 AM, Javier Martinez Canillas
<javier@osg.samsung.com> wrote:
> It's not needed an is just creating a null statement, so remove it.
>
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Patch applied with Hongzhou's ACK.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 6/6] pinctrl: samsung: Remove unneded semicolon
2015-09-16 8:28 ` [PATCH 6/6] pinctrl: samsung: " Javier Martinez Canillas
2015-09-17 7:55 ` Krzysztof Kozlowski
@ 2015-10-02 10:25 ` Linus Walleij
1 sibling, 0 replies; 18+ messages in thread
From: Linus Walleij @ 2015-10-02 10:25 UTC (permalink / raw)
To: Javier Martinez Canillas
Cc: linux-kernel@vger.kernel.org, linux-samsung-soc,
Krzysztof Kozlowski, linux-gpio@vger.kernel.org, Kukjin Kim,
Tomasz Figa, linux-arm-kernel@lists.infradead.org
On Wed, Sep 16, 2015 at 1:28 AM, Javier Martinez Canillas
<javier@osg.samsung.com> wrote:
> It's not needed an is just creating a null statement, so remove it.
>
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Patch applied with Krzysztof's Review-tag.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 3/6] pinctrl: mxs: Remove unneded semicolon
2015-10-02 10:18 ` Linus Walleij
@ 2015-10-02 11:48 ` Uwe Kleine-König
0 siblings, 0 replies; 18+ messages in thread
From: Uwe Kleine-König @ 2015-10-02 11:48 UTC (permalink / raw)
To: Linus Walleij
Cc: Javier Martinez Canillas, linux-kernel@vger.kernel.org,
Hongzhou Yang, Masahiro Yamada, Thierry Reding, Shawn Guo,
linux-gpio@vger.kernel.org, Wei Chen
Hallo Linus,
On Fri, Oct 02, 2015 at 03:18:41AM -0700, Linus Walleij wrote:
> Patch applied with Uwe's ACK.
if it's not too late already: $Subject ~= s/ned/need/
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2015-10-02 11:49 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-16 8:28 [PATCH 0/6] pinctrl: Remove unneded semicolons in drivers Javier Martinez Canillas
2015-09-16 8:28 ` [PATCH 1/6] pinctrl: tz1090: Remove unneded semicolons Javier Martinez Canillas
2015-10-02 10:16 ` Linus Walleij
2015-09-16 8:28 ` [PATCH 2/6] pinctrl: tz1090-pdc: " Javier Martinez Canillas
2015-10-02 10:17 ` Linus Walleij
2015-09-16 8:28 ` [PATCH 3/6] pinctrl: mxs: Remove unneded semicolon Javier Martinez Canillas
2015-09-16 8:31 ` Uwe Kleine-König
2015-10-02 10:18 ` Linus Walleij
2015-10-02 11:48 ` Uwe Kleine-König
2015-09-16 8:28 ` [PATCH 4/6] pinctrl: sunxi: Remove unneeded semicolon Javier Martinez Canillas
2015-09-16 8:41 ` Maxime Ripard
2015-10-02 10:19 ` Linus Walleij
[not found] ` <1442392111-8448-1-git-send-email-javier-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
2015-09-16 8:28 ` [PATCH 5/6] pinctrl: mediatek: Remove unneded semicolon Javier Martinez Canillas
[not found] ` <1442392111-8448-6-git-send-email-javier-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
2015-09-16 18:36 ` Hongzhou Yang
2015-10-02 10:21 ` Linus Walleij
2015-09-16 8:28 ` [PATCH 6/6] pinctrl: samsung: " Javier Martinez Canillas
2015-09-17 7:55 ` Krzysztof Kozlowski
2015-10-02 10:25 ` Linus Walleij
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).