diff options
Diffstat (limited to 'i386/i386at')
-rw-r--r-- | i386/i386at/autoconf.c | 2 | ||||
-rw-r--r-- | i386/i386at/kd_mouse.c | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/i386/i386at/autoconf.c b/i386/i386at/autoconf.c index 908c3ec0..6ed2270c 100644 --- a/i386/i386at/autoconf.c +++ b/i386/i386at/autoconf.c @@ -130,7 +130,6 @@ void take_dev_irq( iunit[pic] = dev->unit; ivect[pic] = dev->intr; intpri[pic] = (int)dev->sysdep; - form_pic_mask(); } else { printf("The device below will clobber IRQ %d.\n", pic); printf("You have two devices at the same IRQ.\n"); @@ -151,7 +150,6 @@ void take_ctlr_irq( iunit[pic] = ctlr->unit; ivect[pic] = ctlr->intr; intpri[pic] = (int)ctlr->sysdep; - form_pic_mask(); } else { printf("The device below will clobber IRQ %d.\n", pic); printf("You have two devices at the same IRQ. This won't work.\n"); diff --git a/i386/i386at/kd_mouse.c b/i386/i386at/kd_mouse.c index 20a8c88c..05280055 100644 --- a/i386/i386at/kd_mouse.c +++ b/i386/i386at/kd_mouse.c @@ -228,7 +228,6 @@ kd_mouse_open( ivect[mouse_pic] = kdintr; oldspl = intpri[mouse_pic]; intpri[mouse_pic] = SPL6; - form_pic_mask(); splx(s); } @@ -291,7 +290,6 @@ kd_mouse_close( ivect[mouse_pic] = oldvect; intpri[mouse_pic] = oldspl; - form_pic_mask(); splx(s); } |