ukphy.c (7505ef3a411ed3f714d5c6bf3228f0d7cd83d97f) | ukphy.c (604f5f1f7790b303eb28109c3138dd3c1a1c0dff) |
---|---|
1/* $NetBSD: ukphy.c,v 1.2 1999/04/23 04:24:32 thorpej Exp $ */ 2 3/*- 4 * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to The NetBSD Foundation 8 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility, --- 72 unchanged lines hidden (view full) --- 81static int ukphy_attach(device_t); 82 83static device_method_t ukphy_methods[] = { 84 /* device interface */ 85 DEVMETHOD(device_probe, ukphy_probe), 86 DEVMETHOD(device_attach, ukphy_attach), 87 DEVMETHOD(device_detach, mii_phy_detach), 88 DEVMETHOD(device_shutdown, bus_generic_shutdown), | 1/* $NetBSD: ukphy.c,v 1.2 1999/04/23 04:24:32 thorpej Exp $ */ 2 3/*- 4 * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to The NetBSD Foundation 8 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility, --- 72 unchanged lines hidden (view full) --- 81static int ukphy_attach(device_t); 82 83static device_method_t ukphy_methods[] = { 84 /* device interface */ 85 DEVMETHOD(device_probe, ukphy_probe), 86 DEVMETHOD(device_attach, ukphy_attach), 87 DEVMETHOD(device_detach, mii_phy_detach), 88 DEVMETHOD(device_shutdown, bus_generic_shutdown), |
89 { 0, 0 } | 89 DEVMETHOD_END |
90}; 91 92static devclass_t ukphy_devclass; 93 94static driver_t ukphy_driver = { 95 "ukphy", 96 ukphy_methods, 97 sizeof(struct mii_softc) --- 67 unchanged lines hidden --- | 90}; 91 92static devclass_t ukphy_devclass; 93 94static driver_t ukphy_driver = { 95 "ukphy", 96 ukphy_methods, 97 sizeof(struct mii_softc) --- 67 unchanged lines hidden --- |