bcm63xx.c (6548698f929814375fa5d62ae1db96959b0418c1) | bcm63xx.c (4e4f10f6498bc5038c0a110b5f21682fcb5578d7) |
---|---|
1/* 2 * Driver for Broadcom 63xx SOCs integrated PHYs 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License 6 * as published by the Free Software Foundation; either version 7 * 2 of the License, or (at your option) any later version. 8 */ --- 116 unchanged lines hidden (view full) --- 125static void __exit bcm63xx_phy_exit(void) 126{ 127 phy_driver_unregister(&bcm63xx_1_driver); 128 phy_driver_unregister(&bcm63xx_2_driver); 129} 130 131module_init(bcm63xx_phy_init); 132module_exit(bcm63xx_phy_exit); | 1/* 2 * Driver for Broadcom 63xx SOCs integrated PHYs 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License 6 * as published by the Free Software Foundation; either version 7 * 2 of the License, or (at your option) any later version. 8 */ --- 116 unchanged lines hidden (view full) --- 125static void __exit bcm63xx_phy_exit(void) 126{ 127 phy_driver_unregister(&bcm63xx_1_driver); 128 phy_driver_unregister(&bcm63xx_2_driver); 129} 130 131module_init(bcm63xx_phy_init); 132module_exit(bcm63xx_phy_exit); |
133 134static struct mdio_device_id bcm63xx_tbl[] = { 135 { 0x00406000, 0xfffffc00 }, 136 { 0x002bdc00, 0xfffffc00 }, 137 { } 138}; 139 140MODULE_DEVICE_TABLE(mdio, bcm64xx_tbl); |
|