diff options
author | imp <imp@FreeBSD.org> | 2005-08-03 15:07:14 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2005-08-03 15:07:14 +0000 |
commit | 1d1cc373b1ae72f5afa2e2dd5db1c63c9e782947 (patch) | |
tree | 345ca906b3dcba52244ec08056069b0dc9053baa /sys/dev/an | |
parent | 4fed1a499cad8f5a93257db055892eac8b8b8427 (diff) | |
download | FreeBSD-src-1d1cc373b1ae72f5afa2e2dd5db1c63c9e782947.zip FreeBSD-src-1d1cc373b1ae72f5afa2e2dd5db1c63c9e782947.tar.gz |
Minor style nits.
Diffstat (limited to 'sys/dev/an')
-rw-r--r-- | sys/dev/an/if_an_isa.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/dev/an/if_an_isa.c b/sys/dev/an/if_an_isa.c index 7144cc8..6baccaf 100644 --- a/sys/dev/an/if_an_isa.c +++ b/sys/dev/an/if_an_isa.c @@ -77,12 +77,11 @@ static struct isa_pnp_id an_ids[] = { { 0, NULL } }; -static int an_probe_isa (device_t); -static int an_attach_isa (device_t); +static int an_probe_isa(device_t); +static int an_attach_isa(device_t); static int -an_probe_isa(dev) - device_t dev; +an_probe_isa(device_t dev) { int error = 0; @@ -103,8 +102,7 @@ an_probe_isa(dev) } static int -an_attach_isa(dev) - device_t dev; +an_attach_isa(device_t dev) { struct an_softc *sc = device_get_softc(dev); int flags = device_get_flags(dev); |