diff options
| author | Simon Glass <[email protected]> | 2024-09-20 09:24:41 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-10-03 11:52:17 -0600 |
| commit | 877bae24b0424a767dd2cb52bd5814199b47f686 (patch) | |
| tree | 5980668ba706106470c8ff757cfb6ac30ce69163 /drivers | |
| parent | b2f571fe71b10e78bb0afc28e9f31bc3da0d16dd (diff) | |
rockchip: mmc: Fix a missing colon and newline
Add a missing colon and newline in rk3399_emmc_get_phy().
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mmc/rockchip_sdhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/rockchip_sdhci.c b/drivers/mmc/rockchip_sdhci.c index 15b4a39770a..4ea3307ed9c 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); |
