* [PATCH 0/6] pinctrl: Remove unneded semicolons in drivers
@ 2015-09-16 8:28 Javier Martinez Canillas
2015-09-16 8:28 ` [PATCH 6/6] pinctrl: samsung: Remove unneded semicolon Javier Martinez Canillas
0 siblings, 1 reply; 4+ 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] 4+ 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
@ 2015-09-16 8:28 ` Javier Martinez Canillas
2015-09-17 7:55 ` Krzysztof Kozlowski
2015-10-02 10:25 ` Linus Walleij
0 siblings, 2 replies; 4+ 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] 4+ messages in thread
* Re: [PATCH 6/6] pinctrl: samsung: Remove unneded semicolon
2015-09-16 8:28 ` [PATCH 6/6] pinctrl: samsung: Remove unneded semicolon Javier Martinez Canillas
@ 2015-09-17 7:55 ` Krzysztof Kozlowski
2015-10-02 10:25 ` Linus Walleij
1 sibling, 0 replies; 4+ 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] 4+ messages in thread
* Re: [PATCH 6/6] pinctrl: samsung: Remove unneded semicolon
2015-09-16 8:28 ` [PATCH 6/6] pinctrl: samsung: Remove unneded semicolon Javier Martinez Canillas
2015-09-17 7:55 ` Krzysztof Kozlowski
@ 2015-10-02 10:25 ` Linus Walleij
1 sibling, 0 replies; 4+ 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] 4+ messages in thread
end of thread, other threads:[~2015-10-02 10:25 UTC | newest]
Thread overview: 4+ 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 6/6] pinctrl: samsung: Remove unneded semicolon 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