summaryrefslogtreecommitdiff
path: root/drivers/clk/ti/gate.c
diff options
context:
space:
mode:
authorTero Kristo <t-kristo@ti.com>2014-03-05 08:03:38 (GMT)
committerTero Kristo <t-kristo@ti.com>2014-05-28 10:06:02 (GMT)
commitb3654d703de2ddf5651d2fa959879d586e685376 (patch)
treef79538e0440b494546ef85ee0e949ffbb70fb604 /drivers/clk/ti/gate.c
parent61f25ca76ccc7b63371a7a6b0b8b9a8a46745b79 (diff)
downloadlinux-b3654d703de2ddf5651d2fa959879d586e685376.tar.xz
CLK: TI: gate: add composite interface clock to OMAP2 only build
Composite interface clock is needed by OMAP2, but it was only built in for OMAP3. Fixed the conditional build flag checks for this. Signed-off-by: Tero Kristo <t-kristo@ti.com>
Diffstat (limited to 'drivers/clk/ti/gate.c')
-rw-r--r--drivers/clk/ti/gate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/ti/gate.c b/drivers/clk/ti/gate.c
index 3e2999d..474c171 100644
--- a/drivers/clk/ti/gate.c
+++ b/drivers/clk/ti/gate.c
@@ -185,7 +185,7 @@ of_ti_composite_no_wait_gate_clk_setup(struct device_node *node)
CLK_OF_DECLARE(ti_composite_no_wait_gate_clk, "ti,composite-no-wait-gate-clock",
of_ti_composite_no_wait_gate_clk_setup);
-#ifdef CONFIG_ARCH_OMAP3
+#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
static void __init of_ti_composite_interface_clk_setup(struct device_node *node)
{
_of_ti_composite_gate_clk_setup(node, &clkhwops_iclk_wait);