disp: msm: dsi: change log level for dsi pll slave config

Change log level for unavailable slave pll from warn to debug
to avoid redundant logs as parrot supports only one DSI.

Change-Id: I200a2f382a1dca7035e4960d3bb0c877867f8ba8
Signed-off-by: Kashish Jain <quic_kashjain@quicinc.com>
Signed-off-by: Anand Tarakh <quic_atarakh@quicinc.com>
This commit is contained in:
Kashish Jain
2022-05-20 12:36:22 +05:30
committed by Anand Tarakh
parent f9251258ff
commit 59417d5d89
2 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (c) 2016-2021, The Linux Foundation. All rights reserved. * Copyright (c) 2016-2021, The Linux Foundation. All rights reserved.
* Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved. * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
*/ */
#include <linux/kernel.h> #include <linux/kernel.h>
@@ -192,7 +192,7 @@ static void dsi_pll_config_slave(struct dsi_pll_resource *rsc)
rsc->slave = NULL; rsc->slave = NULL;
if (!orsc) { if (!orsc) {
DSI_PLL_WARN(rsc, "slave PLL unavilable, assuming standalone config\n"); DSI_PLL_DBG(rsc, "slave PLL unavailable, assuming standalone config\n");
return; return;
} }

View File

@@ -1,7 +1,7 @@
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (c) 2016-2021, The Linux Foundation. All rights reserved. * Copyright (c) 2016-2021, The Linux Foundation. All rights reserved.
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved. * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
*/ */
#include <linux/kernel.h> #include <linux/kernel.h>
@@ -199,8 +199,8 @@ static void dsi_pll_config_slave(struct dsi_pll_resource *rsc)
rsc->slave = NULL; rsc->slave = NULL;
if (!orsc) { if (!orsc) {
DSI_PLL_WARN(rsc, DSI_PLL_DBG(rsc,
"slave PLL unavilable, assuming standalone config\n"); "slave PLL unavailable, assuming standalone config\n");
return; return;
} }