From e851a67d097cb0f49169f585a13fc4ed25b54278 Mon Sep 17 00:00:00 2001 From: imp Date: Tue, 22 Feb 2005 18:58:34 +0000 Subject: [PATCH] Minor style nits missed in earlier passes --- sys/dev/ed/if_ed_isa.c | 7 +++---- sys/dev/ed/if_ed_pci.c | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/sys/dev/ed/if_ed_isa.c b/sys/dev/ed/if_ed_isa.c index 453fd1bd7b97..af365f2129ed 100644 --- a/sys/dev/ed/if_ed_isa.c +++ b/sys/dev/ed/if_ed_isa.c @@ -49,8 +49,8 @@ __FBSDID("$FreeBSD$"); #include -static int ed_isa_probe (device_t); -static int ed_isa_attach (device_t); +static int ed_isa_probe(device_t); +static int ed_isa_attach(device_t); static struct isa_pnp_id ed_ids[] = { { 0x1684a34d, NULL }, /* SMC8416 */ @@ -145,8 +145,7 @@ ed_isa_probe(device_t dev) } static int -ed_isa_attach(dev) - device_t dev; +ed_isa_attach(device_t dev) { struct ed_softc *sc = device_get_softc(dev); int error; diff --git a/sys/dev/ed/if_ed_pci.c b/sys/dev/ed/if_ed_pci.c index c47bb95db3de..036879103c5a 100644 --- a/sys/dev/ed/if_ed_pci.c +++ b/sys/dev/ed/if_ed_pci.c @@ -96,7 +96,7 @@ ed_pci_attach(device_t dev) } error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_NET, - edintr, sc, &sc->irq_handle); + edintr, sc, &sc->irq_handle); if (error) { ed_release_resources(dev); return (error);