diff options
author | Ahmad Fatoum <a.fatoum@pengutronix.de> | 2020-02-24 18:25:19 +0100 |
---|---|---|
committer | Bjorn Andersson <bjorn.andersson@linaro.org> | 2020-03-26 06:29:42 +0100 |
commit | b1f0fa8659f333700b0ca8df7b2e33dc5d554178 (patch) | |
tree | 8fd1000af4926badf67e207762352f4c51782bc7 /drivers/remoteproc/stm32_rproc.c | |
parent | remoteproc/mediatek: Use size_t type for len in scp_da_to_va (diff) | |
download | linux-b1f0fa8659f333700b0ca8df7b2e33dc5d554178.tar.xz linux-b1f0fa8659f333700b0ca8df7b2e33dc5d554178.zip |
remoteproc: stm32: demote warning about optional property absence
The mainline device trees lack the "st,syscfg-pdds", so probing the
driver always throws the warning. As the property is optional per binding
and the driver can deal with its absence, demote the warning to info log
level.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
Link: https://lore.kernel.org/r/20200224172519.15315-1-a.fatoum@pengutronix.de
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to 'drivers/remoteproc/stm32_rproc.c')
-rw-r--r-- | drivers/remoteproc/stm32_rproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/remoteproc/stm32_rproc.c b/drivers/remoteproc/stm32_rproc.c index 9a8b5f5e2572..6a66dbf2df40 100644 --- a/drivers/remoteproc/stm32_rproc.c +++ b/drivers/remoteproc/stm32_rproc.c @@ -602,7 +602,7 @@ static int stm32_rproc_parse_dt(struct platform_device *pdev) err = stm32_rproc_get_syscon(np, "st,syscfg-pdds", &ddata->pdds); if (err) - dev_warn(dev, "failed to get pdds\n"); + dev_info(dev, "failed to get pdds\n"); rproc->auto_boot = of_property_read_bool(np, "st,auto-boot"); |