Module Name:    src
Committed By:   tsutsui
Date:           Sat Apr 10 17:40:36 UTC 2010

Modified Files:
        src/sys/arch/atari/atari: autoconf.c

Log Message:
Comment out currently unused mbprint().


To generate a diff of this commit:
cvs rdiff -u -r1.58 -r1.59 src/sys/arch/atari/atari/autoconf.c

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/atari/atari/autoconf.c
diff -u src/sys/arch/atari/atari/autoconf.c:1.58 src/sys/arch/atari/atari/autoconf.c:1.59
--- src/sys/arch/atari/atari/autoconf.c:1.58	Sat Apr 10 16:14:07 2010
+++ src/sys/arch/atari/atari/autoconf.c	Sat Apr 10 17:40:36 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: autoconf.c,v 1.58 2010/04/10 16:14:07 tsutsui Exp $	*/
+/*	$NetBSD: autoconf.c,v 1.59 2010/04/10 17:40:36 tsutsui Exp $	*/
 
 /*
  * Copyright (c) 1995 Leo Weppelman
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.58 2010/04/10 16:14:07 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.59 2010/04/10 17:40:36 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -46,9 +46,11 @@
 #include <atari/atari/device.h>
 
 static void findroot(void);
+int mbmatch(struct device *, struct cfdata *, void *);
 void mbattach(struct device *, struct device *, void *);
+#if 0
 int mbprint(void *, const char *);
-int mbmatch(struct device *, struct cfdata *, void *);
+#endif
 
 int atari_realconfig;
 #include <sys/kernel.h>
@@ -284,6 +286,7 @@
 	config_found(dp, __UNCONST("avmebus") , simple_devprint);
 }
 
+#if 0
 int
 mbprint(void *auxp, const char *pnp)
 {
@@ -292,3 +295,4 @@
 		aprint_normal("%s at %s", (char *)auxp, pnp);
 	return UNCONF;
 }
+#endif

Reply via email to