summaryrefslogtreecommitdiffstats
path: root/include/asm-ppc64/pSeries_reconfig.h
diff options
context:
space:
mode:
authorPaul Mackerras2005-10-12 09:03:36 +0200
committerPaul Mackerras2005-10-12 09:03:36 +0200
commit7e130edf712ac054aecf643f9d3d0142a9679e6a (patch)
treec762cf5bfdb2f2834f22407fe42c23639615c2ad /include/asm-ppc64/pSeries_reconfig.h
parentpowerpc: Bring in some changes made to arch/ppc and include/asm-ppc64 (diff)
downloadkernel-qcow2-linux-7e130edf712ac054aecf643f9d3d0142a9679e6a.tar.gz
kernel-qcow2-linux-7e130edf712ac054aecf643f9d3d0142a9679e6a.tar.xz
kernel-qcow2-linux-7e130edf712ac054aecf643f9d3d0142a9679e6a.zip
ppc64: Remove duplicate versions of some headers
This removes three headers from include/asm-ppc64 that are now in include/asm-powerpc and are sufficiently similar that they can be used with ARCH=ppc64. Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-ppc64/pSeries_reconfig.h')
-rw-r--r--include/asm-ppc64/pSeries_reconfig.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/include/asm-ppc64/pSeries_reconfig.h b/include/asm-ppc64/pSeries_reconfig.h
deleted file mode 100644
index c0db1ea7f7d1..000000000000
--- a/include/asm-ppc64/pSeries_reconfig.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef _PPC64_PSERIES_RECONFIG_H
-#define _PPC64_PSERIES_RECONFIG_H
-
-#include <linux/notifier.h>
-
-/*
- * Use this API if your code needs to know about OF device nodes being
- * added or removed on pSeries systems.
- */
-
-#define PSERIES_RECONFIG_ADD 0x0001
-#define PSERIES_RECONFIG_REMOVE 0x0002
-
-#ifdef CONFIG_PPC_PSERIES
-extern int pSeries_reconfig_notifier_register(struct notifier_block *);
-extern void pSeries_reconfig_notifier_unregister(struct notifier_block *);
-#else /* !CONFIG_PPC_PSERIES */
-static inline int pSeries_reconfig_notifier_register(struct notifier_block *nb)
-{
- return 0;
-}
-static inline void pSeries_reconfig_notifier_unregister(struct notifier_block *nb) { }
-#endif /* CONFIG_PPC_PSERIES */
-
-#endif /* _PPC64_PSERIES_RECONFIG_H */