From: Stephen Boyd Date: Fri, 16 Jun 2017 21:50:41 +0000 (-0700) Subject: clk: sunxi-ng: Staticize ccu_mux_helper_unapply_prediv() X-Git-Tag: v4.13-rc1~117^2~33 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=4dc6e1a356a7d3cb4f9f4bfa5a305a48fcefaff1;p=linux.git clk: sunxi-ng: Staticize ccu_mux_helper_unapply_prediv() It isn't used outside of this file right now. Signed-off-by: Stephen Boyd --- diff --git a/drivers/clk/sunxi-ng/ccu_mux.c b/drivers/clk/sunxi-ng/ccu_mux.c index cfe4538304fb..312664155a54 100644 --- a/drivers/clk/sunxi-ng/ccu_mux.c +++ b/drivers/clk/sunxi-ng/ccu_mux.c @@ -68,7 +68,7 @@ unsigned long ccu_mux_helper_apply_prediv(struct ccu_common *common, return parent_rate / ccu_mux_get_prediv(common, cm, parent_index); } -unsigned long ccu_mux_helper_unapply_prediv(struct ccu_common *common, +static unsigned long ccu_mux_helper_unapply_prediv(struct ccu_common *common, struct ccu_mux_internal *cm, int parent_index, unsigned long parent_rate)