]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
mmc: renesas: Fix R-Car spelling
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Wed, 11 Dec 2024 07:30:30 +0000 (08:30 +0100)
committerMarek Vasut <marek.vasut+renesas@mailbox.org>
Wed, 11 Dec 2024 07:36:24 +0000 (08:36 +0100)
The correct spelling is R-Car, including the dash, update the usage.
Comment changes only, no functional change.

Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
drivers/mmc/renesas-sdhi.c
drivers/mmc/tmio-common.h

index 92afa6adcdac91da39fdee97c39860b1cad7b930..556f07eaf8fc1b010bb186afe7aa370160f84772 100644 (file)
@@ -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;
 
index f489fb70766bd9f8f3dc81d7bf06124fe2903062..657aba751484527a89e81e527efa79b8a53cd2ce 100644 (file)
@@ -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;