From 9693ff7295bc7cc16b9fbff25a11288b807d08ee Mon Sep 17 00:00:00 2001 From: alfred Date: Mon, 14 Oct 2002 22:31:52 +0000 Subject: Put function return types on a line by themselves. Cleanup my earlier de-__P sweep and remove whitespace between function names and paramters. --- sys/dev/mii/pnphy.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'sys/dev/mii/pnphy.c') diff --git a/sys/dev/mii/pnphy.c b/sys/dev/mii/pnphy.c index 9b1ec55..4a38b46 100644 --- a/sys/dev/mii/pnphy.c +++ b/sys/dev/mii/pnphy.c @@ -80,8 +80,8 @@ static const char rcsid[] = CSR_WRITE_4(sc, reg, \ CSR_READ_4(sc, reg) & ~x) -static int pnphy_probe (device_t); -static int pnphy_attach (device_t); +static int pnphy_probe(device_t); +static int pnphy_attach(device_t); static device_method_t pnphy_methods[] = { /* device interface */ @@ -105,7 +105,8 @@ DRIVER_MODULE(pnphy, miibus, pnphy_driver, pnphy_devclass, 0, 0); static int pnphy_service(struct mii_softc *, struct mii_data *, int); static void pnphy_status(struct mii_softc *); -static int pnphy_probe(dev) +static int +pnphy_probe(dev) device_t dev; { struct mii_attach_args *ma; @@ -125,7 +126,8 @@ static int pnphy_probe(dev) return (0); } -static int pnphy_attach(dev) +static int +pnphy_attach(dev) device_t dev; { struct mii_softc *sc; -- cgit v1.1