Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1394790 > unrolled thread
| Started by | Douglas Anderson <dianders@chromium.org> |
|---|---|
| First post | 2016-05-05 01:40 +0200 |
| Last post | 2016-05-08 23:00 +0200 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] clk: rockchip: fix the rk3399 sdmmc sample / drv name Douglas Anderson <dianders@chromium.org> - 2016-05-05 01:40 +0200
Re: [PATCH] clk: rockchip: fix the rk3399 sdmmc sample / drv name Brian Norris <briannorris@chromium.org> - 2016-05-05 18:40 +0200
Re: [PATCH] clk: rockchip: fix the rk3399 sdmmc sample / drv name Heiko Stuebner <heiko@sntech.de> - 2016-05-08 23:00 +0200
| From | Douglas Anderson <dianders@chromium.org> |
|---|---|
| Date | 2016-05-05 01:40 +0200 |
| Subject | [PATCH] clk: rockchip: fix the rk3399 sdmmc sample / drv name |
| Message-ID | <rveyB-56O-9@gated-at.bofh.it> |
The rk3399 clock table had a simple typo in it, calling the SDMMC sample
and drive clocks by the wrong name. Fix this minor typo.
Signed-off-by: Douglas Anderson <dianders@chromium.org>
---
drivers/clk/rockchip/clk-rk3399.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/clk/rockchip/clk-rk3399.c b/drivers/clk/rockchip/clk-rk3399.c
index 5248726af86d..291543f52caa 100644
--- a/drivers/clk/rockchip/clk-rk3399.c
+++ b/drivers/clk/rockchip/clk-rk3399.c
@@ -894,8 +894,8 @@ static struct rockchip_clk_branch rk3399_clk_branches[] __initdata = {
RK3399_CLKSEL_CON(16), 8, 3, MFLAGS, 0, 7, DFLAGS,
RK3399_CLKGATE_CON(6), 1, GFLAGS),
- MMC(SCLK_SDMMC_DRV, "emmc_drv", "clk_sdmmc", RK3399_SDMMC_CON0, 1),
- MMC(SCLK_SDMMC_SAMPLE, "emmc_sample", "clk_sdmmc", RK3399_SDMMC_CON1, 1),
+ MMC(SCLK_SDMMC_DRV, "sdmmc_drv", "clk_sdmmc", RK3399_SDMMC_CON0, 1),
+ MMC(SCLK_SDMMC_SAMPLE, "sdmmc_sample", "clk_sdmmc", RK3399_SDMMC_CON1, 1),
MMC(SCLK_SDIO_DRV, "sdio_drv", "clk_sdio", RK3399_SDIO_CON0, 1),
MMC(SCLK_SDIO_SAMPLE, "sdio_sample", "clk_sdio", RK3399_SDIO_CON1, 1),
--
2.8.0.rc3.226.g39d4020
[toc] | [next] | [standalone]
| From | Brian Norris <briannorris@chromium.org> |
|---|---|
| Date | 2016-05-05 18:40 +0200 |
| Message-ID | <rvutI-3iB-23@gated-at.bofh.it> |
| In reply to | #1394790 |
On Wed, May 04, 2016 at 04:36:25PM -0700, Douglas Anderson wrote:
> The rk3399 clock table had a simple typo in it, calling the SDMMC sample
> and drive clocks by the wrong name. Fix this minor typo.
>
> Signed-off-by: Douglas Anderson <dianders@chromium.org>
LGTM.
Tested-by: Brian Norris <briannorris@chromium.org>
Acked-by: Brian Norris <briannorris@chromium.org>
> ---
> drivers/clk/rockchip/clk-rk3399.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/clk/rockchip/clk-rk3399.c b/drivers/clk/rockchip/clk-rk3399.c
> index 5248726af86d..291543f52caa 100644
> --- a/drivers/clk/rockchip/clk-rk3399.c
> +++ b/drivers/clk/rockchip/clk-rk3399.c
> @@ -894,8 +894,8 @@ static struct rockchip_clk_branch rk3399_clk_branches[] __initdata = {
> RK3399_CLKSEL_CON(16), 8, 3, MFLAGS, 0, 7, DFLAGS,
> RK3399_CLKGATE_CON(6), 1, GFLAGS),
>
> - MMC(SCLK_SDMMC_DRV, "emmc_drv", "clk_sdmmc", RK3399_SDMMC_CON0, 1),
> - MMC(SCLK_SDMMC_SAMPLE, "emmc_sample", "clk_sdmmc", RK3399_SDMMC_CON1, 1),
> + MMC(SCLK_SDMMC_DRV, "sdmmc_drv", "clk_sdmmc", RK3399_SDMMC_CON0, 1),
> + MMC(SCLK_SDMMC_SAMPLE, "sdmmc_sample", "clk_sdmmc", RK3399_SDMMC_CON1, 1),
>
> MMC(SCLK_SDIO_DRV, "sdio_drv", "clk_sdio", RK3399_SDIO_CON0, 1),
> MMC(SCLK_SDIO_SAMPLE, "sdio_sample", "clk_sdio", RK3399_SDIO_CON1, 1),
> --
> 2.8.0.rc3.226.g39d4020
[toc] | [prev] | [next] | [standalone]
| From | Heiko Stuebner <heiko@sntech.de> |
|---|---|
| Date | 2016-05-08 23:00 +0200 |
| Message-ID | <rwDXX-5GD-3@gated-at.bofh.it> |
| In reply to | #1394790 |
Am Mittwoch, 4. Mai 2016, 16:36:25 schrieb Douglas Anderson: > The rk3399 clock table had a simple typo in it, calling the SDMMC sample > and drive clocks by the wrong name. Fix this minor typo. > > Signed-off-by: Douglas Anderson <dianders@chromium.org> applied to my clk-branch Thanks for catching this Heiko
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web