Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/arch/cats/cats/autoconf.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- src/sys/arch/cats/cats/autoconf.c 2005/01/02 22:47:26 1.8 +++ src/sys/arch/cats/cats/autoconf.c 2005/06/03 23:42:50 1.9 @@ -1,4 +1,4 @@ -/* $NetBSD: autoconf.c,v 1.8 2005/01/02 22:47:26 chris Exp $ */ +/* $NetBSD: autoconf.c,v 1.9 2005/06/03 23:42:50 chris Exp $ */ /* * Copyright (c) 1994-1998 Mark Brinicombe. @@ -41,7 +41,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.8 2005/01/02 22:47:26 chris Exp $"); +__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.9 2005/06/03 23:42:50 chris Exp $"); #include "opt_md.h" @@ -58,19 +58,19 @@ __KERNEL_RCSID(0, "$NetBSD: autoconf.c,v #include "isa.h" -void isa_intr_init (void); +void isa_intr_init(void); -static void get_device __P((char *name)); -static void set_root_device __P((void)); +static void get_device(const char *name); +static void set_root_device(void); /* Decode a device name to a major and minor number */ static void -get_device(name) - char *name; +get_device(const char *name) { int unit, part; - char devname[16], buf[32], *cp; + char devname[16], buf[32]; + const char *cp; struct device *dv; if (strncmp(name, "/dev/", 5) == 0)