diff mbox series

[17/18] rockchip: mmc: Fix a missing colon

Message ID 20240828014538.3322013-18-sjg@chromium.org
State Changes Requested
Delegated to: Tom Rini
Headers show
Series vbe: Series part D | expand

Commit Message

Simon Glass Aug. 28, 2024, 1:45 a.m. UTC
Add a missing colon in rk3399_emmc_get_phy().

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 drivers/mmc/rockchip_sdhci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Sughosh Ganu Aug. 29, 2024, 6:36 a.m. UTC | #1
On Wed, 28 Aug 2024 at 07:18, Simon Glass <sjg@chromium.org> wrote:
>
> Add a missing colon in rk3399_emmc_get_phy().
>
> Signed-off-by: Simon Glass <sjg@chromium.org>
> ---

The change seems to be adding a newline, and not a colon as the commit
message is suggesting.

-sughosh

>
>  drivers/mmc/rockchip_sdhci.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mmc/rockchip_sdhci.c b/drivers/mmc/rockchip_sdhci.c
> index 15b4a39770a..6c5c8781c3e 100644
> --- a/drivers/mmc/rockchip_sdhci.c
> +++ b/drivers/mmc/rockchip_sdhci.c
> @@ -230,7 +230,7 @@ static int rk3399_emmc_get_phy(struct udevice *dev)
>
>         grf_base = syscon_get_first_range(ROCKCHIP_SYSCON_GRF);
>         if (IS_ERR_OR_NULL(grf_base)) {
> -               printf("%s Get syscon grf failed", __func__);
> +               printf("%s Get syscon grf failed\n", __func__);
>                 return -ENODEV;
>         }
>         grf_phy_offset = ofnode_read_u32_default(phy_node, "reg", 0);
> --
> 2.34.1
>
diff mbox series

Patch

diff --git a/drivers/mmc/rockchip_sdhci.c b/drivers/mmc/rockchip_sdhci.c
index 15b4a39770a..6c5c8781c3e 100644
--- a/drivers/mmc/rockchip_sdhci.c
+++ b/drivers/mmc/rockchip_sdhci.c
@@ -230,7 +230,7 @@  static int rk3399_emmc_get_phy(struct udevice *dev)
 
 	grf_base = syscon_get_first_range(ROCKCHIP_SYSCON_GRF);
 	if (IS_ERR_OR_NULL(grf_base)) {
-		printf("%s Get syscon grf failed", __func__);
+		printf("%s Get syscon grf failed\n", __func__);
 		return -ENODEV;
 	}
 	grf_phy_offset = ofnode_read_u32_default(phy_node, "reg", 0);