diff options
| -rw-r--r-- | sys/dev/hfa/hfa_freebsd.c | 4 | ||||
| -rw-r--r-- | sys/dev/idt/idt_pci.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/hfa/hfa_freebsd.c b/sys/dev/hfa/hfa_freebsd.c index 67e4e760d856..d535336b111c 100644 --- a/sys/dev/hfa/hfa_freebsd.c +++ b/sys/dev/hfa/hfa_freebsd.c @@ -358,13 +358,13 @@ hfa_reset (device_t dev) } static int -hfa_modevent (module_t mod, int what, void *arg) +hfa_modevent (module_t mod, int type, void *data) { int error; error = 0; - switch (what) { + switch (type) { case MOD_LOAD: /* * Verify software version diff --git a/sys/dev/idt/idt_pci.c b/sys/dev/idt/idt_pci.c index c2fe260a918f..69b8e2e5e5a0 100644 --- a/sys/dev/idt/idt_pci.c +++ b/sys/dev/idt/idt_pci.c @@ -267,13 +267,13 @@ idt_free (device_t dev) } static int -idt_modevent (module_t mod, int what, void *arg) +idt_modevent (module_t mod, int type, void *data) { int error; error = 0; - switch (what) { + switch (type) { case MOD_LOAD: idt_nif_zone = uma_zcreate("idt nif", sizeof(struct atm_nif), |
