1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-12 14:29:28 +00:00

Fixed warnings.

This commit is contained in:
Yoshihiro Takahashi 2000-10-15 09:04:21 +00:00
parent ada54f9e54
commit b48b645254
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=67154

View File

@ -124,8 +124,6 @@ void stop_emulating __P((void));
typedef u_char bool_t;
#define NPXIRQ 8
static int npx_attach __P((device_t dev));
void npx_intr __P((void *));
static void npx_identify __P((driver_t *driver, device_t parent));
@ -271,7 +269,7 @@ npx_probe(dev)
save_idt_npxintr = idt[npx_intrno];
save_idt_npxtrap = idt[16];
#ifdef PC98
outb(IO_ICU1 + 2, ~IRQ_SLAVE);
outb(IO_ICU1 + 2, (u_int8_t) ~IRQ_SLAVE);
outb(IO_ICU2 + 2, ~(1 << (npx_irq - 8)));
#else
outb(IO_ICU1 + 1, ~IRQ_SLAVE);