]> www.infradead.org Git - users/dwmw2/linux.git/commit
clk/sophgo: Using BUG() instead of unreachable() in mmux_get_parent_id()
authorLi Qiang <liqiang01@kylinos.cn>
Tue, 9 Jul 2024 06:36:38 +0000 (14:36 +0800)
committerStephen Boyd <sboyd@kernel.org>
Wed, 10 Jul 2024 21:15:54 +0000 (14:15 -0700)
commit1f7a04a0e673c19cc10bf4039047e11367ac5735
treef9e07b27c32a1459157ec6a4738379c37b38ed96
parent54cb3bb483379b0c070528974843e06aecbc9390
clk/sophgo: Using BUG() instead of unreachable() in mmux_get_parent_id()

In general it's a good idea to avoid using bare unreachable() because it
introduces undefined behavior in compiled code. but it caused a compilation warning,
Using BUG() instead of unreachable() to resolve compilation warnings.

Fixes the following warnings:
    drivers/clk/sophgo/clk-cv18xx-ip.o: warning: objtool: mmux_round_rate() falls through to next function bypass_div_round_rate()

Fixes: 80fd61ec46124 ("clk: sophgo: Add clock support for CV1800 SoC")
Signed-off-by: Li Qiang <liqiang01@kylinos.cn>
Link: https://lore.kernel.org/r/c8e66d51f880127549e2a3e623be6787f62b310d.1720506143.git.liqiang01@kylinos.cn
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
drivers/clk/sophgo/clk-cv18xx-ip.c