]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
rtc: hym8563: include clkout code only if COMMON_CLK active
authorHeiko Stuebner <heiko@sntech.de>
Fri, 3 Jan 2014 03:10:23 +0000 (14:10 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Fri, 3 Jan 2014 03:10:23 +0000 (14:10 +1100)
The contents of clk-provide.h, struct clk_hw etc, are only available if
CONFIG_COMMON_CLK is selected.  Therefore IS_ENABLED(COMMON_CLK) is not
sufficient and real preprocessor conditions are necessary to keep the code
in question from being compiled on non-COMMON_CLK systems.

Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Reported-by: Wu Fengguang <fengguang.wu@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
drivers/rtc/rtc-hym8563.c

index 841392cb2e42f48d1ec6d09024cecbd1443bd3b9..b56e3d3fbfd3e04707e5fcb1067efe76378b6a93 100644 (file)
@@ -87,7 +87,9 @@ struct hym8563 {
        struct i2c_client       *client;
        struct rtc_device       *rtc;
        bool                    valid;
+#ifdef CONFIG_COMMON_CLK
        struct clk_hw           clkout_hw;
+#endif
 };
 
 /*
@@ -290,6 +292,7 @@ static const struct rtc_class_ops hym8563_rtc_ops = {
  * Handling of the clkout
  */
 
+#ifdef CONFIG_COMMON_CLK
 #define clkout_hw_to_hym8563(_hw) container_of(_hw, struct hym8563, clkout_hw)
 
 static int clkout_rates[] = {
@@ -423,6 +426,7 @@ static struct clk *hym8563_clkout_register_clk(struct hym8563 *hym8563)
 
        return clk;
 }
+#endif
 
 /*
  * The alarm interrupt is implemented as a level-low interrupt in the
@@ -565,8 +569,9 @@ static int hym8563_probe(struct i2c_client *client,
        if (IS_ERR(hym8563->rtc))
                return PTR_ERR(hym8563->rtc);
 
-       if (IS_ENABLED(CONFIG_COMMON_CLK))
-               hym8563_clkout_register_clk(hym8563);
+#ifdef CONFIG_COMMON_CLK
+       hym8563_clkout_register_clk(hym8563);
+#endif
 
        return 0;
 }