clk: s3c2410: Staticize local symbols
authorKrzysztof Kozlowski <k.kozlowski.k@gmail.com>
Fri, 1 May 2015 16:02:47 +0000 (01:02 +0900)
committerStephen Boyd <sboyd@codeaurora.org>
Wed, 6 May 2015 05:50:52 +0000 (22:50 -0700)
Staticize symbols not exported and not used outside of file.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski.k@gmail.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/samsung/clk-s3c2410-dclk.c

index f4f29ed..db6fddb 100644 (file)
@@ -81,13 +81,13 @@ static int s3c24xx_clkout_set_parent(struct clk_hw *hw, u8 index)
        return ret;
 }
 
-const struct clk_ops s3c24xx_clkout_ops = {
+static const struct clk_ops s3c24xx_clkout_ops = {
        .get_parent = s3c24xx_clkout_get_parent,
        .set_parent = s3c24xx_clkout_set_parent,
        .determine_rate = __clk_mux_determine_rate,
 };
 
-struct clk *s3c24xx_register_clkout(struct device *dev, const char *name,
+static struct clk *s3c24xx_register_clkout(struct device *dev, const char *name,
                const char **parent_names, u8 num_parents,
                u8 shift, u32 mask)
 {