aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-arm/arch-pxa
diff options
context:
space:
mode:
authorEric Miao <eric.miao@marvell.com>2008-07-29 14:08:14 +0800
committerEric Miao <eric.miao@marvell.com>2008-08-05 09:25:19 +0800
commitab277121426edca2ee0601fc6318c9467350771e (patch)
tree105f3a8042214e859c78801030fb3c305ac5b849 /include/asm-arm/arch-pxa
parentMerge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6 (diff)
downloadlinux-dev-ab277121426edca2ee0601fc6318c9467350771e.tar.xz
linux-dev-ab277121426edca2ee0601fc6318c9467350771e.zip
[ARM] pxa: introduce reset.h for reset specific header information
Signed-off-by: Eric Miao <eric.miao@marvell.com>
Diffstat (limited to '')
-rw-r--r--include/asm-arm/arch-pxa/hardware.h5
-rw-r--r--include/asm-arm/arch-pxa/reset.h9
2 files changed, 9 insertions, 5 deletions
diff --git a/include/asm-arm/arch-pxa/hardware.h b/include/asm-arm/arch-pxa/hardware.h
index 979a45695d7d..351d0a721769 100644
--- a/include/asm-arm/arch-pxa/hardware.h
+++ b/include/asm-arm/arch-pxa/hardware.h
@@ -224,11 +224,6 @@ extern void pxa_gpio_set_value(unsigned gpio, int value);
*/
extern unsigned int get_memclk_frequency_10khz(void);
-/*
- * register GPIO as reset generator
- */
-extern int init_gpio_reset(int gpio);
-
#endif
#if defined(CONFIG_MACH_ARMCORE) && defined(CONFIG_PCI)
diff --git a/include/asm-arm/arch-pxa/reset.h b/include/asm-arm/arch-pxa/reset.h
new file mode 100644
index 000000000000..6ca72c5cf7db
--- /dev/null
+++ b/include/asm-arm/arch-pxa/reset.h
@@ -0,0 +1,9 @@
+#ifndef __ASM_ARCH_RESET_H
+#define __ASM_ARCH_RESET_H
+
+/*
+ * register GPIO as reset generator
+ */
+extern int init_gpio_reset(int gpio);
+
+#endif /* __ASM_ARCH_RESET_H */