From 2506ea94b7400921185d3760b960c2f3cb93d1b2 Mon Sep 17 00:00:00 2001 From: jkim Date: Tue, 16 Jan 2007 17:48:57 +0000 Subject: [PATCH] Correct driver_t brgphy_driver, which was forgotten from the last commit. --- sys/dev/mii/brgphy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/mii/brgphy.c b/sys/dev/mii/brgphy.c index 85f24280fc4a..09ff2c0123d5 100644 --- a/sys/dev/mii/brgphy.c +++ b/sys/dev/mii/brgphy.c @@ -86,7 +86,7 @@ static devclass_t brgphy_devclass; static driver_t brgphy_driver = { "brgphy", brgphy_methods, - sizeof(struct mii_softc) + sizeof(struct brgphy_softc) }; DRIVER_MODULE(brgphy, miibus, brgphy_driver, brgphy_devclass, 0, 0);