Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1621266 > unrolled thread
| Started by | Colin King <colin.king@canonical.com> |
|---|---|
| First post | 2017-04-11 15:40 +0200 |
| Last post | 2017-04-20 16:20 +0200 |
| Articles | 4 — 4 participants |
Back to article view | Back to linux.kernel
[PATCH] clk: apn806: fix spelling mistake: "mising" -> "missing" Colin King <colin.king@canonical.com> - 2017-04-11 15:40 +0200
Re: [PATCH] clk: apn806: fix spelling mistake: "mising" -> "missing" Gregory CLEMENT <gregory.clement@free-electrons.com> - 2017-04-12 11:50 +0200
Re: [PATCH] clk: apn806: fix spelling mistake: "mising" -> "missing" Stephen Boyd <sboyd@codeaurora.org> - 2017-04-12 19:00 +0200
Re: [PATCH] clk: apn806: fix spelling mistake: "mising" -> "missing" Ulf Hansson <ulf.hansson@linaro.org> - 2017-04-20 16:20 +0200
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Date | 2017-04-11 15:40 +0200 |
| Subject | [PATCH] clk: apn806: fix spelling mistake: "mising" -> "missing" |
| Message-ID | <tv4bv-7C6-1@gated-at.bofh.it> |
From: Colin Ian King <colin.king@canonical.com>
trivial fix to spelling mistake in dev_warn message
Fixes: f109ca864414dc ("clk: apn806: Turn the eMMC clock as optional for dts backwards compatible")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
drivers/clk/mvebu/ap806-system-controller.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/clk/mvebu/ap806-system-controller.c b/drivers/clk/mvebu/ap806-system-controller.c
index 103fe18a3c29..8155baccc98e 100644
--- a/drivers/clk/mvebu/ap806-system-controller.c
+++ b/drivers/clk/mvebu/ap806-system-controller.c
@@ -140,7 +140,7 @@ static int ap806_syscon_clk_probe(struct platform_device *pdev)
4, &name)) {
ap806_clk_data.clk_num--;
dev_warn(&pdev->dev,
- "eMMC clock mising: update the device tree!\n");
+ "eMMC clock missing: update the device tree!\n");
} else {
ap806_clks[4] = clk_register_fixed_factor(NULL, name,
fixedclk_name,
--
2.11.0
[toc] | [next] | [standalone]
| From | Gregory CLEMENT <gregory.clement@free-electrons.com> |
|---|---|
| Date | 2017-04-12 11:50 +0200 |
| Message-ID | <tvn4u-2PP-9@gated-at.bofh.it> |
| In reply to | #1621266 |
Hi Colin,
On mar., avril 11 2017, Colin King <colin.king@canonical.com> wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> trivial fix to spelling mistake in dev_warn message
>
> Fixes: f109ca864414dc ("clk: apn806: Turn the eMMC clock as optional for dts backwards compatible")
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
The intial patch was merged through the mmc subsystem while it modifies
a clk driver. So I would suggest either Ulf applying it or waiting for
v4.12-rc1 to apply the patch through the clk subsystem.
Gregory
> ---
> drivers/clk/mvebu/ap806-system-controller.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/clk/mvebu/ap806-system-controller.c b/drivers/clk/mvebu/ap806-system-controller.c
> index 103fe18a3c29..8155baccc98e 100644
> --- a/drivers/clk/mvebu/ap806-system-controller.c
> +++ b/drivers/clk/mvebu/ap806-system-controller.c
> @@ -140,7 +140,7 @@ static int ap806_syscon_clk_probe(struct platform_device *pdev)
> 4, &name)) {
> ap806_clk_data.clk_num--;
> dev_warn(&pdev->dev,
> - "eMMC clock mising: update the device tree!\n");
> + "eMMC clock missing: update the device tree!\n");
> } else {
> ap806_clks[4] = clk_register_fixed_factor(NULL, name,
> fixedclk_name,
> --
> 2.11.0
>
--
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
[toc] | [prev] | [next] | [standalone]
| From | Stephen Boyd <sboyd@codeaurora.org> |
|---|---|
| Date | 2017-04-12 19:00 +0200 |
| Message-ID | <tvtME-6Uu-53@gated-at.bofh.it> |
| In reply to | #1621961 |
On 04/12, Gregory CLEMENT wrote:
> Hi Colin,
>
> On mar., avril 11 2017, Colin King <colin.king@canonical.com> wrote:
>
> > From: Colin Ian King <colin.king@canonical.com>
> >
> > trivial fix to spelling mistake in dev_warn message
> >
> > Fixes: f109ca864414dc ("clk: apn806: Turn the eMMC clock as optional for dts backwards compatible")
> > Signed-off-by: Colin Ian King <colin.king@canonical.com>
>
>
> The intial patch was merged through the mmc subsystem while it modifies
> a clk driver. So I would suggest either Ulf applying it or waiting for
> v4.12-rc1 to apply the patch through the clk subsystem.
>
In case Ulf wants to take it now
Acked-by: Stephen Boyd <sboyd@codeaurora.org>
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project
[toc] | [prev] | [next] | [standalone]
| From | Ulf Hansson <ulf.hansson@linaro.org> |
|---|---|
| Date | 2017-04-20 16:20 +0200 |
| Message-ID | <tyl6a-1yM-23@gated-at.bofh.it> |
| In reply to | #1621266 |
On 11 April 2017 at 15:37, Colin King <colin.king@canonical.com> wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> trivial fix to spelling mistake in dev_warn message
>
> Fixes: f109ca864414dc ("clk: apn806: Turn the eMMC clock as optional for dts backwards compatible")
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
Thanks, applied for next at mmc tree!
Kind regards
Uffe
> ---
> drivers/clk/mvebu/ap806-system-controller.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/clk/mvebu/ap806-system-controller.c b/drivers/clk/mvebu/ap806-system-controller.c
> index 103fe18a3c29..8155baccc98e 100644
> --- a/drivers/clk/mvebu/ap806-system-controller.c
> +++ b/drivers/clk/mvebu/ap806-system-controller.c
> @@ -140,7 +140,7 @@ static int ap806_syscon_clk_probe(struct platform_device *pdev)
> 4, &name)) {
> ap806_clk_data.clk_num--;
> dev_warn(&pdev->dev,
> - "eMMC clock mising: update the device tree!\n");
> + "eMMC clock missing: update the device tree!\n");
> } else {
> ap806_clks[4] = clk_register_fixed_factor(NULL, name,
> fixedclk_name,
> --
> 2.11.0
>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web