summaryrefslogtreecommitdiff
path: root/src/soc/qualcomm/sc7280
diff options
context:
space:
mode:
authorTaniya Das <tdas@codeaurora.org>2021-06-23 09:08:57 +0530
committerShelley Chen <shchen@google.com>2021-09-16 17:14:20 +0000
commite3cf008d88447b8a9ee3c08f755dcee4ada80a77 (patch)
tree0539449cd07387d20c9740e168faa1fe80472cf6 /src/soc/qualcomm/sc7280
parent75a29bc92c137642d81dbd8d799c4b2ad7e07c08 (diff)
soc/qualcomm: clock: Clean up clock driver
Updated return type as CB_SUCCESS and aligned indentation. BUG=b:182963902 TEST=Validated on qualcomm sc7180 and sc7280 development board. Signed-off-by: Taniya Das <tdas@codeaurora.org> Change-Id: Ifabe0508a37a841779965f4e38172f680e18d38a Reviewed-on: https://review.coreboot.org/c/coreboot/+/57447 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Shelley Chen <shchen@google.com>
Diffstat (limited to 'src/soc/qualcomm/sc7280')
-rw-r--r--src/soc/qualcomm/sc7280/clock.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/soc/qualcomm/sc7280/clock.c b/src/soc/qualcomm/sc7280/clock.c
index 871fb9bbd8..07a575b952 100644
--- a/src/soc/qualcomm/sc7280/clock.c
+++ b/src/soc/qualcomm/sc7280/clock.c
@@ -255,7 +255,6 @@ void clock_configure_qspi(uint32_t hz)
clock_enable(&gcc->qspi_core_cbcr);
}
-
void clock_enable_qup(int qup)
{
struct qupv3_clock *qup_clk;
@@ -412,7 +411,7 @@ enum cb_err mdss_clock_enable(enum clk_mdss clk_type)
if (clk_type >= MDSS_CLK_COUNT)
return CB_ERR;
- /* Enable clock*/
+ /* Enable clock */
return clock_enable(mdss_cbcr[clk_type]);
}