Apply thorpej's recent All-Ports conf.c change. Seems SH5 slipped

through the net the first time around. Here's the relevant snippet
of the original commit message:

Rename cdev_systrace_init() to cdev_clonemisc_init(), so it can
be properly used by any misc. cloning device.
This commit is contained in:
scw 2002-07-19 18:53:15 +00:00
parent a52924b3fa
commit a486314d8a
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: conf.c,v 1.2 2002/07/12 20:43:12 scw Exp $ */
/* $NetBSD: conf.c,v 1.3 2002/07/19 18:53:15 scw Exp $ */
/*
* Copyright (c) 1994, 1995 Charles M. Hannum. All rights reserved.
@ -195,7 +195,7 @@ struct cdevsw cdevsw[] =
cdev_notdef(), /* 51 */
cdev_clockctl_init(NCLOCKCTL, clockctl),/* 52: clockctl pseudo device */
#ifdef SYSTRACE
cdev_systrace_init(1, systrace),/* 53: system call tracing */
cdev_clonemisc_init(1, systrace),/* 53: system call tracing */
#else
cdev_notdef(), /* 53: system call tracing */
#endif