Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1652069 > unrolled thread
| Started by | Wolfram Sang <wsa+renesas@sang-engineering.com> |
|---|---|
| First post | 2017-05-28 11:40 +0200 |
| Last post | 2017-05-30 11:30 +0200 |
| Articles | 4 — 3 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 4/7] mmc: use proper name for the R-Car SoC Wolfram Sang <wsa+renesas@sang-engineering.com> - 2017-05-28 11:40 +0200
Re: [PATCH 4/7] mmc: use proper name for the R-Car SoC Ulf Hansson <ulf.hansson@linaro.org> - 2017-05-29 16:50 +0200
Re: [PATCH 4/7] mmc: use proper name for the R-Car SoC Lee Jones <lee.jones@linaro.org> - 2017-05-30 09:20 +0200
Re: [PATCH 4/7] mmc: use proper name for the R-Car SoC Ulf Hansson <ulf.hansson@linaro.org> - 2017-05-30 11:30 +0200
| From | Wolfram Sang <wsa+renesas@sang-engineering.com> |
|---|---|
| Date | 2017-05-28 11:40 +0200 |
| Subject | [PATCH 4/7] mmc: use proper name for the R-Car SoC |
| Message-ID | <tM2Q1-7s-5@gated-at.bofh.it> |
It is 'R-Car', not 'RCar'. No code or binding changes, only descriptive text. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> --- I suggest this trivial patch should be picked individually per susbsystem. drivers/mmc/host/renesas_sdhi_core.c | 2 +- include/linux/mfd/tmio.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/mmc/host/renesas_sdhi_core.c b/drivers/mmc/host/renesas_sdhi_core.c index 846ee1a8e5a675..397b3e29977ea8 100644 --- a/drivers/mmc/host/renesas_sdhi_core.c +++ b/drivers/mmc/host/renesas_sdhi_core.c @@ -130,7 +130,7 @@ static unsigned int renesas_sdhi_clk_update(struct tmio_mmc_host *host, unsigned int freq, diff, best_freq = 0, diff_min = ~0; int i, ret; - /* tested only on RCar Gen2+ currently; may work for others */ + /* tested only on R-Car Gen2+ currently; may work for others */ if (!(host->pdata->flags & TMIO_MMC_MIN_RCAR2)) return clk_get_rate(priv->clk); diff --git a/include/linux/mfd/tmio.h b/include/linux/mfd/tmio.h index a1520d88ebf3a3..c83c16b931a886 100644 --- a/include/linux/mfd/tmio.h +++ b/include/linux/mfd/tmio.h @@ -66,7 +66,7 @@ */ #define TMIO_MMC_SDIO_IRQ (1 << 2) -/* Some features are only available or tested on RCar Gen2 or later */ +/* Some features are only available or tested on R-Car Gen2 or later */ #define TMIO_MMC_MIN_RCAR2 (1 << 3) /* -- 2.11.0
[toc] | [next] | [standalone]
| From | Ulf Hansson <ulf.hansson@linaro.org> |
|---|---|
| Date | 2017-05-29 16:50 +0200 |
| Message-ID | <tMu9B-1fm-33@gated-at.bofh.it> |
| In reply to | #1652069 |
On 28 May 2017 at 11:30, Wolfram Sang <wsa+renesas@sang-engineering.com> wrote: > It is 'R-Car', not 'RCar'. No code or binding changes, only descriptive text. > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Thanks, applied for next! For mfd, Lee, please tell if you have any issues me picking this via my mmc tree. Kind regards Uffe > --- > I suggest this trivial patch should be picked individually per susbsystem. > > drivers/mmc/host/renesas_sdhi_core.c | 2 +- > include/linux/mfd/tmio.h | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/mmc/host/renesas_sdhi_core.c b/drivers/mmc/host/renesas_sdhi_core.c > index 846ee1a8e5a675..397b3e29977ea8 100644 > --- a/drivers/mmc/host/renesas_sdhi_core.c > +++ b/drivers/mmc/host/renesas_sdhi_core.c > @@ -130,7 +130,7 @@ static unsigned int renesas_sdhi_clk_update(struct tmio_mmc_host *host, > unsigned int freq, diff, best_freq = 0, diff_min = ~0; > int i, ret; > > - /* tested only on RCar Gen2+ currently; may work for others */ > + /* tested only on R-Car Gen2+ currently; may work for others */ > if (!(host->pdata->flags & TMIO_MMC_MIN_RCAR2)) > return clk_get_rate(priv->clk); > > diff --git a/include/linux/mfd/tmio.h b/include/linux/mfd/tmio.h > index a1520d88ebf3a3..c83c16b931a886 100644 > --- a/include/linux/mfd/tmio.h > +++ b/include/linux/mfd/tmio.h > @@ -66,7 +66,7 @@ > */ > #define TMIO_MMC_SDIO_IRQ (1 << 2) > > -/* Some features are only available or tested on RCar Gen2 or later */ > +/* Some features are only available or tested on R-Car Gen2 or later */ > #define TMIO_MMC_MIN_RCAR2 (1 << 3) > > /* > -- > 2.11.0 >
[toc] | [prev] | [next] | [standalone]
| From | Lee Jones <lee.jones@linaro.org> |
|---|---|
| Date | 2017-05-30 09:20 +0200 |
| Message-ID | <tMJBD-49a-9@gated-at.bofh.it> |
| In reply to | #1652573 |
On Mon, 29 May 2017, Ulf Hansson wrote: > On 28 May 2017 at 11:30, Wolfram Sang <wsa+renesas@sang-engineering.com> wrote: > > It is 'R-Car', not 'RCar'. No code or binding changes, only descriptive text. > > > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> > > Thanks, applied for next! > > For mfd, Lee, please tell if you have any issues me picking this via > my mmc tree. I don't, but it is normal procedure to wait for an Ack from all Maintainers involved before applying. ;) > > --- > > I suggest this trivial patch should be picked individually per susbsystem. > > > > drivers/mmc/host/renesas_sdhi_core.c | 2 +- > > include/linux/mfd/tmio.h | 2 +- > > 2 files changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/mmc/host/renesas_sdhi_core.c b/drivers/mmc/host/renesas_sdhi_core.c > > index 846ee1a8e5a675..397b3e29977ea8 100644 > > --- a/drivers/mmc/host/renesas_sdhi_core.c > > +++ b/drivers/mmc/host/renesas_sdhi_core.c > > @@ -130,7 +130,7 @@ static unsigned int renesas_sdhi_clk_update(struct tmio_mmc_host *host, > > unsigned int freq, diff, best_freq = 0, diff_min = ~0; > > int i, ret; > > > > - /* tested only on RCar Gen2+ currently; may work for others */ > > + /* tested only on R-Car Gen2+ currently; may work for others */ > > if (!(host->pdata->flags & TMIO_MMC_MIN_RCAR2)) > > return clk_get_rate(priv->clk); > > > > diff --git a/include/linux/mfd/tmio.h b/include/linux/mfd/tmio.h > > index a1520d88ebf3a3..c83c16b931a886 100644 > > --- a/include/linux/mfd/tmio.h > > +++ b/include/linux/mfd/tmio.h > > @@ -66,7 +66,7 @@ > > */ > > #define TMIO_MMC_SDIO_IRQ (1 << 2) > > > > -/* Some features are only available or tested on RCar Gen2 or later */ > > +/* Some features are only available or tested on R-Car Gen2 or later */ > > #define TMIO_MMC_MIN_RCAR2 (1 << 3) > > > > /* > > -- Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog
[toc] | [prev] | [next] | [standalone]
| From | Ulf Hansson <ulf.hansson@linaro.org> |
|---|---|
| Date | 2017-05-30 11:30 +0200 |
| Message-ID | <tMLDs-5ux-25@gated-at.bofh.it> |
| In reply to | #1652884 |
On 30 May 2017 at 09:16, Lee Jones <lee.jones@linaro.org> wrote: > On Mon, 29 May 2017, Ulf Hansson wrote: > >> On 28 May 2017 at 11:30, Wolfram Sang <wsa+renesas@sang-engineering.com> wrote: >> > It is 'R-Car', not 'RCar'. No code or binding changes, only descriptive text. >> > >> > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> >> >> Thanks, applied for next! >> >> For mfd, Lee, please tell if you have any issues me picking this via >> my mmc tree. > > I don't, but it is normal procedure to wait for an Ack from all > Maintainers involved before applying. ;) Yeah! However this was that trivial so I went ahead. :-) Kind regards Uffe
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web