Module Name:    src
Committed By:   phx
Date:           Thu Jan 20 15:44:56 UTC 2011

Modified Files:
        src/sys/arch/amigappc/include: cpu.h

Log Message:
Add missing is_a600() definition, used by amiga devices.
We simply define it as 0, because an A600 will never have a PPC installed.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/amigappc/include/cpu.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/amigappc/include/cpu.h
diff -u src/sys/arch/amigappc/include/cpu.h:1.18 src/sys/arch/amigappc/include/cpu.h:1.19
--- src/sys/arch/amigappc/include/cpu.h:1.18	Tue Feb  9 18:13:10 2010
+++ src/sys/arch/amigappc/include/cpu.h	Thu Jan 20 15:44:56 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: cpu.h,v 1.18 2010/02/09 18:13:10 phx Exp $	*/
+/*	$NetBSD: cpu.h,v 1.19 2011/01/20 15:44:56 phx Exp $	*/
 
 /*
  * Copyright (C) 1995-1997 Wolfgang Solfrank.
@@ -47,14 +47,15 @@
 /*
  * Prototypes from amiga_init.c
  */
-void	*alloc_z2mem (long);
+void	*alloc_z2mem(long);
 
 /*
  * Prototypes from autoconf.c
  */
-int     is_a1200 (void);
-int     is_a3000 (void);
-int     is_a4000 (void);
+#define	is_a600()	0
+int     is_a1200(void);
+int     is_a3000(void);
+int     is_a4000(void);
 
 /*
  * Prototypes from machdep.c

Reply via email to