The upstream CV1800B devicetree uses "sophgo,cv1800b-clk" for the clock controller. Add this compatible to the existing CV1800B clock driver so it can bind when the board uses CONFIG_OF_UPSTREAM.
Signed-off-by: Zhuxu Ran <[email protected]> --- drivers/clk/sophgo/clk-cv1800b.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/sophgo/clk-cv1800b.c b/drivers/clk/sophgo/clk-cv1800b.c index d946ea57a46..9cfc1153f2a 100644 --- a/drivers/clk/sophgo/clk-cv1800b.c +++ b/drivers/clk/sophgo/clk-cv1800b.c @@ -741,6 +741,7 @@ const struct clk_ops cv1800b_clk_ops = { static const struct udevice_id cv1800b_clk_of_match[] = { { .compatible = "sophgo,cv1800-clk" }, + { .compatible = "sophgo,cv1800b-clk" }, { }, }; -- 2.55.0

