Move to softintr__init to cpu_startup.

This commit is contained in:
matt 2004-04-01 16:57:45 +00:00
parent 44708bbf1a
commit 7a72576c33
1 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.130 2004/03/24 19:44:20 matt Exp $ */
/* $NetBSD: machdep.c,v 1.131 2004/04/01 16:57:45 matt Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.130 2004/03/24 19:44:20 matt Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.131 2004/04/01 16:57:45 matt Exp $");
#include "opt_compat_netbsd.h"
#include "opt_ddb.h"
@ -253,6 +253,12 @@ void
cpu_startup()
{
oea_startup(NULL);
#ifdef __HAVE_GENERIC_SOFT_INTERRUPTS
/*
* Initialize soft interrupt framework.
*/
softintr__init();
#endif
}
/*