micrel.c (daab7fc734a53fdeaf844b7c03053118ad1769da) | micrel.c (cf93c94581bab447a5634c6d737c1cf38c080261) |
---|---|
1/* 2 * drivers/net/phy/micrel.c 3 * 4 * Driver for Micrel PHYs 5 * 6 * Author: David J. Choi 7 * 8 * Copyright (c) 2010 Micrel, Inc. --- 217 unchanged lines hidden (view full) --- 226 227module_init(ksphy_init); 228module_exit(ksphy_exit); 229 230MODULE_DESCRIPTION("Micrel PHY driver"); 231MODULE_AUTHOR("David J. Choi"); 232MODULE_LICENSE("GPL"); 233 | 1/* 2 * drivers/net/phy/micrel.c 3 * 4 * Driver for Micrel PHYs 5 * 6 * Author: David J. Choi 7 * 8 * Copyright (c) 2010 Micrel, Inc. --- 217 unchanged lines hidden (view full) --- 226 227module_init(ksphy_init); 228module_exit(ksphy_exit); 229 230MODULE_DESCRIPTION("Micrel PHY driver"); 231MODULE_AUTHOR("David J. Choi"); 232MODULE_LICENSE("GPL"); 233 |
234static struct mdio_device_id micrel_tbl[] = { | 234static struct mdio_device_id __maybe_unused micrel_tbl[] = { |
235 { PHY_ID_KSZ9021, 0x000fff10 }, 236 { PHY_ID_KS8001, 0x00fffff0 }, 237 { PHY_ID_KS8737, 0x00fffff0 }, 238 { PHY_ID_KS8041, 0x00fffff0 }, 239 { PHY_ID_KS8051, 0x00fffff0 }, 240 { } 241}; 242 243MODULE_DEVICE_TABLE(mdio, micrel_tbl); | 235 { PHY_ID_KSZ9021, 0x000fff10 }, 236 { PHY_ID_KS8001, 0x00fffff0 }, 237 { PHY_ID_KS8737, 0x00fffff0 }, 238 { PHY_ID_KS8041, 0x00fffff0 }, 239 { PHY_ID_KS8051, 0x00fffff0 }, 240 { } 241}; 242 243MODULE_DEVICE_TABLE(mdio, micrel_tbl); |