summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorChristoph Muellner <christoph.muellner@theobroma-systems.com>2018-12-20 11:21:13 +0100
committerChristoph Müllner <christophm30@gmail.com>2019-04-07 15:23:04 +0200
commit63a9e492216bb958d8192b173513fd9498279cb6 (patch)
tree29325864ffe0886d858c03aa588b15ab2b7afcdf /drivers
parent58e44abc209a1b377c26243eb820e2086cb42c91 (diff)
clk: rockchip: mmc: Degrade log level.
rockchip_mmc_get_phase() has been observed to print error messages of the following form: [ 0.000000] rockchip_mmc_get_phase: invalid clk rate While it is correct, that further processing is not possible under this circumstances, we don't need to print that message with error verbosity and rather let the caller decide if this is a problem (based on the -EINVAL return value). Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/clk/rockchip/clk-mmc-phase.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/rockchip/clk-mmc-phase.c b/drivers/clk/rockchip/clk-mmc-phase.c
index 026a26bb702d..7e3146096176 100644
--- a/drivers/clk/rockchip/clk-mmc-phase.c
+++ b/drivers/clk/rockchip/clk-mmc-phase.c
@@ -62,7 +62,7 @@ static int rockchip_mmc_get_phase(struct clk_hw *hw)
/* See the comment for rockchip_mmc_set_phase below */
if (!rate) {
- pr_err("%s: invalid clk rate\n", __func__);
+ pr_info("%s: invalid clk rate\n", __func__);
return -EINVAL;
}