[PATCH 1/2] clk: zynqmp: Add fallthrough statement in the switch case
Venkatesh Yadav Abbarapu
venkatesh.abbarapu at amd.com
Fri May 19 13:38:15 CEST 2023
From: Algapally Santosh Sagar <santoshsagar.algapally at amd.com>
Add fallthrough statement in switch case to fix the sparse warning.
In function 'zynqmp_clk_get_rate': warning: this statement may
fall through [-Wimplicit-fallthrough=]
Signed-off-by: Algapally Santosh Sagar <santoshsagar.algapally at amd.com>
Signed-off-by: Venkatesh Yadav Abbarapu <venkatesh.abbarapu at amd.com>
---
drivers/clk/clk_zynqmp.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/clk/clk_zynqmp.c b/drivers/clk/clk_zynqmp.c
index 45c679a627..be0ee50e0e 100644
--- a/drivers/clk/clk_zynqmp.c
+++ b/drivers/clk/clk_zynqmp.c
@@ -691,6 +691,7 @@ static ulong zynqmp_clk_get_rate(struct clk *clk)
case topsw_lsbus:
case sata_ref ... gpu_pp1_ref:
two_divs = true;
+ fallthrough;
case cpu_r5:
case dbg_fpd:
case ams_ref:
--
2.17.1
More information about the U-Boot
mailing list