rk_usb2phy.c (8b3bc70a2b2d3889f9163e5e5a24747cea6417e6) | rk_usb2phy.c (b2c1681aa155b3cd577cd3a24c50fd053f02ade2) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2019 Emmanuel Vadot <manu@FreeBSD.Org> 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: --- 397 unchanged lines hidden (view full) --- 406}; 407 408static driver_t rk_usb2phy_driver = { 409 "rk_usb2phy", 410 rk_usb2phy_methods, 411 sizeof(struct rk_usb2phy_softc) 412}; 413 | 1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2019 Emmanuel Vadot <manu@FreeBSD.Org> 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: --- 397 unchanged lines hidden (view full) --- 406}; 407 408static driver_t rk_usb2phy_driver = { 409 "rk_usb2phy", 410 rk_usb2phy_methods, 411 sizeof(struct rk_usb2phy_softc) 412}; 413 |
414static devclass_t rk_usb2phy_devclass; 415EARLY_DRIVER_MODULE(rk_usb2phy, simplebus, rk_usb2phy_driver, 416 rk_usb2phy_devclass, 0, 0, BUS_PASS_SUPPORTDEV + BUS_PASS_ORDER_MIDDLE); | 414EARLY_DRIVER_MODULE(rk_usb2phy, simplebus, rk_usb2phy_driver, 0, 0, 415 BUS_PASS_SUPPORTDEV + BUS_PASS_ORDER_MIDDLE); |
417MODULE_VERSION(rk_usb2phy, 1); | 416MODULE_VERSION(rk_usb2phy, 1); |