summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2015-12-16 01:45:45 +0300
committerArnd Bergmann <arnd@arndb.de>2015-12-16 01:45:45 +0300
commit8864eaca909d03caa220534640a7c92e4d06c96d (patch)
tree75904540dfb565748f5135ee273143f731f40e40 /include/linux
parentfb4f0424293a0fb75d0c9edbc16bd618930ff2da (diff)
parent84f45ee9d7f08cc0c0f9276573e1bdf53ccdd58b (diff)
downloadlinux-8864eaca909d03caa220534640a7c92e4d06c96d.tar.xz
Merge branch 'mmp/multiplatform' into next/multiplatform
* mmp/multiplatform: ARM: mmp: avoid unused functions ARM: mmp: move into ARCH_MULTIPLATFORM ARM: mmp: make all header files local ARM: mmp: make plat-pxa build standalone ARM: mmp: remove remaining legacy pxa-dma support ARM: mohawk: allow building with MMU disabled ARM: make xscale iwmmxt code multiplatform aware clk: mmp: stop using platform headers
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/clk/mmp.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/linux/clk/mmp.h b/include/linux/clk/mmp.h
new file mode 100644
index 000000000000..607321fa2c2b
--- /dev/null
+++ b/include/linux/clk/mmp.h
@@ -0,0 +1,17 @@
+#ifndef __CLK_MMP_H
+#define __CLK_MMP_H
+
+#include <linux/types.h>
+
+extern void pxa168_clk_init(phys_addr_t mpmu_phys,
+ phys_addr_t apmu_phys,
+ phys_addr_t apbc_phys);
+extern void pxa910_clk_init(phys_addr_t mpmu_phys,
+ phys_addr_t apmu_phys,
+ phys_addr_t apbc_phys,
+ phys_addr_t apbcp_phys);
+extern void mmp2_clk_init(phys_addr_t mpmu_phys,
+ phys_addr_t apmu_phys,
+ phys_addr_t apbc_phys);
+
+#endif