Message ID | 20211209203429.140751-1-alexander.sverdlin@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | ep93xx: clock: Fix "plain integer as NULL pointer" warning | expand |
diff --git a/arch/arm/mach-ep93xx/clock.c b/arch/arm/mach-ep93xx/clock.c index cc75087134d3..3dfeef00ac5b 100644 --- a/arch/arm/mach-ep93xx/clock.c +++ b/arch/arm/mach-ep93xx/clock.c @@ -207,7 +207,7 @@ static int ep93xx_mux_determine_rate(struct clk_hw *hw, struct clk_rate_request *req) { unsigned long rate = req->rate; - struct clk *best_parent = 0; + struct clk *best_parent = NULL; unsigned long __parent_rate; unsigned long best_rate = 0, actual_rate, mclk_rate; unsigned long best_parent_rate;