All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Jaehoon Chung" <jh80.chung@samsung.com>
To: "'Marek Vasut'" <marek.vasut+renesas@mailbox.org>,
	<u-boot@lists.denx.de>
Cc: "'Tom Rini'" <trini@konsulko.com>
Subject: RE: [PATCH 06/13] mmc: renesas: Fix R-Car spelling
Date: Mon, 9 Dec 2024 08:56:42 +0900	[thread overview]
Message-ID: <082001db49cc$d47931b0$7d6b9510$@samsung.com> (raw)
In-Reply-To: <20241208220551.204743-6-marek.vasut+renesas@mailbox.org>



> -----Original Message-----
> From: U-Boot <u-boot-bounces@lists.denx.de> On Behalf Of Marek Vasut
> Sent: Monday, December 9, 2024 7:04 AM
> To: u-boot@lists.denx.de
> Cc: Marek Vasut <marek.vasut+renesas@mailbox.org>; Tom Rini <trini@konsulko.com>
> Subject: [PATCH 06/13] mmc: renesas: Fix R-Car spelling
>
> The correct spelling is R-Car, including the dash, update the usage.
> Kconfig strings and comment changes only, no functional change.
>
> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>

Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>

Best Regards,
Jaehoon Chung

> ---
> Cc: Tom Rini <trini@konsulko.com>
> Cc: u-boot@lists.denx.de
> ---
>  drivers/mmc/renesas-sdhi.c |  2 +-
>  drivers/mmc/tmio-common.h  | 10 +++++-----
>  2 files changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/mmc/renesas-sdhi.c b/drivers/mmc/renesas-sdhi.c
> index 92afa6adcda..556f07eaf8f 100644
> --- a/drivers/mmc/renesas-sdhi.c
> +++ b/drivers/mmc/renesas-sdhi.c
> @@ -571,7 +571,7 @@ int renesas_sdhi_execute_tuning(struct udevice *dev, uint opcode)
>  	int i, ret = 0, sret;
>  	u32 caps, reg;
>
> -	/* Only supported on Renesas RCar */
> +	/* Only supported on Renesas R-Car */
>  	if (!(priv->caps & TMIO_SD_CAP_RCAR_UHS))
>  		return -EINVAL;
>
> diff --git a/drivers/mmc/tmio-common.h b/drivers/mmc/tmio-common.h
> index f489fb70766..657aba75148 100644
> --- a/drivers/mmc/tmio-common.h
> +++ b/drivers/mmc/tmio-common.h
> @@ -64,7 +64,7 @@
>  #define   TMIO_SD_CLKCTL_DIV4		BIT(0)	/* SDCLK = CLK / 4 */
>  #define   TMIO_SD_CLKCTL_DIV2		0	/* SDCLK = CLK / 2 */
>  #define   TMIO_SD_CLKCTL_DIV1		BIT(10)	/* SDCLK = CLK */
> -#define   TMIO_SD_CLKCTL_RCAR_DIV1	0xff	/* SDCLK = CLK (RCar ver.) */
> +#define   TMIO_SD_CLKCTL_RCAR_DIV1	0xff	/* SDCLK = CLK (R-Car ver.) */
>  #define   TMIO_SD_CLKCTL_OFFEN		BIT(9)	/* stop SDCLK when unused */
>  #define   TMIO_SD_CLKCTL_SCLKEN	BIT(8)	/* SDCLK output enable */
>  #define TMIO_SD_SIZE			0x04c	/* block size */
> @@ -90,7 +90,7 @@
>  #define   TMIO_SD_VOLT_180		(2 << 0)/* 1.8V signal */
>  #define TMIO_SD_DMA_MODE		0x410
>  #define   TMIO_SD_DMA_MODE_DIR_RD	BIT(16)	/* 1: from device, 0: to dev */
> -#define   TMIO_SD_DMA_MODE_BUS_WIDTH	(BIT(5) | BIT(4)) /* RCar, 64bit */
> +#define   TMIO_SD_DMA_MODE_BUS_WIDTH	(BIT(5) | BIT(4)) /* R-Car, 64bit */
>  #define   TMIO_SD_DMA_MODE_ADDR_INC	BIT(0)	/* 1: address inc, 0: fixed */
>  #define TMIO_SD_DMA_CTL		0x414
>  #define   TMIO_SD_DMA_CTL_START	BIT(0)	/* start DMA (auto cleared) */
> @@ -128,9 +128,9 @@ struct tmio_sd_priv {
>  #define TMIO_SD_CAP_DIV1024		BIT(2)	/* divisor 1024 is available */
>  #define TMIO_SD_CAP_64BIT		BIT(3)	/* Controller is 64bit */
>  #define TMIO_SD_CAP_16BIT		BIT(4)	/* Controller is 16bit */
> -#define TMIO_SD_CAP_RCAR_GEN2		BIT(5)	/* Renesas RCar version of IP */
> -#define TMIO_SD_CAP_RCAR_GEN3		BIT(6)	/* Renesas RCar version of IP */
> -#define TMIO_SD_CAP_RCAR_UHS		BIT(7)	/* Renesas RCar UHS/SDR modes */
> +#define TMIO_SD_CAP_RCAR_GEN2		BIT(5)	/* Renesas R-Car version of IP */
> +#define TMIO_SD_CAP_RCAR_GEN3		BIT(6)	/* Renesas R-Car version of IP */
> +#define TMIO_SD_CAP_RCAR_UHS		BIT(7)	/* Renesas R-Car UHS/SDR modes */
>  #define TMIO_SD_CAP_RCAR		\
>  	(TMIO_SD_CAP_RCAR_GEN2 | TMIO_SD_CAP_RCAR_GEN3)
>  	struct udevice *vqmmc_dev;
> --
> 2.45.2




  reply	other threads:[~2024-12-08 23:56 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-08 22:03 [PATCH 01/13] ARM: dts: renesas: Fix R-Car spelling Marek Vasut
2024-12-08 22:03 ` [PATCH 02/13] ARM: " Marek Vasut
2024-12-08 22:03 ` [PATCH 03/13] clk: " Marek Vasut
2024-12-08 22:03 ` [PATCH 04/13] gpio: " Marek Vasut
2024-12-08 22:03 ` [PATCH 05/13] i2c: " Marek Vasut
2024-12-08 22:03 ` [PATCH 06/13] mmc: " Marek Vasut
2024-12-08 23:56   ` Jaehoon Chung [this message]
2024-12-08 22:04 ` [PATCH 07/13] mtd: " Marek Vasut
2024-12-08 22:04 ` [PATCH 08/13] pci: " Marek Vasut
2024-12-08 22:04 ` [PATCH 09/13] phy: " Marek Vasut
2024-12-08 22:04 ` [PATCH 10/13] pinctrl: " Marek Vasut
2024-12-08 22:04 ` [PATCH 11/13] serial: " Marek Vasut
2024-12-08 22:04 ` [PATCH 12/13] spi: " Marek Vasut
2024-12-08 22:04 ` [PATCH 13/13] usb: " Marek Vasut

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='082001db49cc$d47931b0$7d6b9510$@samsung.com' \
    --to=jh80.chung@samsung.com \
    --cc=marek.vasut+renesas@mailbox.org \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.