aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-ux500/include/mach/clkdev.h
diff options
context:
space:
mode:
authorSrinidhi Kasagar <srinidhi.kasagar@stericsson.com>2009-11-28 08:15:01 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2009-11-28 10:22:52 +0000
commitc6b503caef9abefb2e90ac83f672b75dc14bacd0 (patch)
treef72e3c6c630f26ebcb7a4acfa09fd2add227df0f /arch/arm/mach-ux500/include/mach/clkdev.h
parentffae4e014a4bff7b904e4b5ace2ae453b9d93519 (diff)
ARM: 5830/1: ARM: U8500 clock framework
Adds basic clock framework to the U8500 platform. Currently it just uses the clock lookup table and add the each entry to the clkdevice. More complex clock management to follow soon Signed-off-by: srinidhi kasagar <srinidhi.kasagar@stericsson.com> Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-ux500/include/mach/clkdev.h')
-rw-r--r--arch/arm/mach-ux500/include/mach/clkdev.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-ux500/include/mach/clkdev.h b/arch/arm/mach-ux500/include/mach/clkdev.h
new file mode 100644
index 00000000000..04b37a89801
--- /dev/null
+++ b/arch/arm/mach-ux500/include/mach/clkdev.h
@@ -0,0 +1,7 @@
+#ifndef __ASM_MACH_CLKDEV_H
+#define __ASM_MACH_CLKDEV_H
+
+#define __clk_get(clk) ({ 1; })
+#define __clk_put(clk) do { } while (0)
+
+#endif