- Fixed default irq in SMP kernel.

- Removed hardcode IRQ in #ifdef PC98.
This commit is contained in:
KATO Takenori 1999-05-17 12:38:28 +00:00
parent d31171c3a3
commit 68d855cd75
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=47266

View File

@ -32,7 +32,7 @@
* SUCH DAMAGE.
*
* from: @(#)npx.c 7.2 (Berkeley) 5/12/91
* $Id: npx.c,v 1.46 1999/05/11 16:29:21 luoqi Exp $
* $Id: npx.c,v 1.47 1999/05/17 12:13:28 kato Exp $
*/
#include "npx.h"
@ -215,7 +215,11 @@ npx_probe(dev)
#ifdef SMP
if (resource_int_value("npx", 0, "irq", &npx_irq) != 0)
#ifdef PC98
npx_irq = 8;
#else
npx_irq = 13;
#endif
return npx_probe1(dev);
#else /* SMP */
@ -234,7 +238,11 @@ npx_probe(dev)
* won't need to do so much here.
*/
if (resource_int_value("npx", 0, "irq", &npx_irq) != 0)
#ifdef PC98
npx_irq = 8;
#else
npx_irq = 13;
#endif
npx_intrno = NRSVIDT + npx_irq;
save_eflags = read_eflags();
disable_intr();
@ -407,15 +415,9 @@ npx_probe1(dev)
if (r == 0)
panic("npx: can't get ports");
rid = 0;
#ifdef PC98
r = bus_alloc_resource(dev, SYS_RES_IRQ,
&rid, NPXIRQ, NPXIRQ,
1, RF_ACTIVE);
#else
r = bus_alloc_resource(dev, SYS_RES_IRQ,
&rid, npx_irq, npx_irq,
1, RF_ACTIVE);
#endif
if (r == 0)
panic("npx: can't get IRQ");
BUS_SETUP_INTR(device_get_parent(dev),