mmc: rockchip: Log some error returns
Add a little logging to some places in this driver, to aid debugging when something goes wrong. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -80,7 +80,7 @@ static int rockchip_dwmmc_of_to_plat(struct udevice *dev)
|
||||
priv->fifo_depth = dev_read_u32_default(dev, "fifo-depth", 0);
|
||||
|
||||
if (priv->fifo_depth < 0)
|
||||
return -EINVAL;
|
||||
return log_msg_ret("rkp", -EINVAL);
|
||||
priv->fifo_mode = dev_read_bool(dev, "fifo-mode");
|
||||
|
||||
#ifdef CONFIG_SPL_BUILD
|
||||
@@ -96,7 +96,7 @@ static int rockchip_dwmmc_of_to_plat(struct udevice *dev)
|
||||
int val = dev_read_u32_default(dev, "max-frequency", -EINVAL);
|
||||
|
||||
if (val < 0)
|
||||
return val;
|
||||
return log_msg_ret("rkc", val);
|
||||
|
||||
priv->minmax[0] = 400000; /* 400 kHz */
|
||||
priv->minmax[1] = val;
|
||||
|
||||
Reference in New Issue
Block a user