summaryrefslogtreecommitdiffstats
path: root/include/asm-ppc/machdep.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-07-21 22:00:56 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-07-21 22:00:56 +0000
commit168660f24dfc46c2702acbe4701a446f42a59578 (patch)
treef431368afbf6b1b71809cf3fd904d800ea126f4d /include/asm-ppc/machdep.h
parent6420f767924fa73b0ea267864d96820815f4ba5a (diff)
Merge with Linux 2.4.0-test5-pre3.
Diffstat (limited to 'include/asm-ppc/machdep.h')
-rw-r--r--include/asm-ppc/machdep.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/asm-ppc/machdep.h b/include/asm-ppc/machdep.h
index 108004ae2..306fc2b21 100644
--- a/include/asm-ppc/machdep.h
+++ b/include/asm-ppc/machdep.h
@@ -92,9 +92,12 @@ extern void setup_pci_ptrs(void);
* Power macintoshes have either a CUDA or a PMU controlling
* system reset, power, NVRAM, RTC.
*/
-enum sys_ctrler_kind {
+typedef enum sys_ctrler_kind {
+ SYS_CTRLER_UNKNOWN = 0,
SYS_CTRLER_CUDA = 1,
SYS_CTRLER_PMU = 2,
-} sys_ctrler;
+} sys_ctrler_t;
+
+extern sys_ctrler_t sys_ctrler;
#endif /* _PPC_MACHDEP_H */