diff options
author | David Woodhouse <dwmw2@infradead.org> | 2010-04-01 21:05:56 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-04-02 17:30:40 -0400 |
commit | 4e4f10f6498bc5038c0a110b5f21682fcb5578d7 (patch) | |
tree | 2f7e91e9a35fd1e6ac63b55e3c08bdb1c701268d /drivers/net/phy/smsc.c | |
parent | 8626d3b4328061f5b82b11ae1d6918a0c3602f42 (diff) |
phylib: Add module table to all existing phy drivers
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/smsc.c')
-rw-r--r-- | drivers/net/phy/smsc.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/net/phy/smsc.c b/drivers/net/phy/smsc.c index ed2644a57500..78fa988256fc 100644 --- a/drivers/net/phy/smsc.c +++ b/drivers/net/phy/smsc.c | |||
@@ -253,3 +253,14 @@ MODULE_LICENSE("GPL"); | |||
253 | 253 | ||
254 | module_init(smsc_init); | 254 | module_init(smsc_init); |
255 | module_exit(smsc_exit); | 255 | module_exit(smsc_exit); |
256 | |||
257 | static struct mdio_device_id smsc_tbl[] = { | ||
258 | { 0x0007c0a0, 0xfffffff0 }, | ||
259 | { 0x0007c0b0, 0xfffffff0 }, | ||
260 | { 0x0007c0c0, 0xfffffff0 }, | ||
261 | { 0x0007c0d0, 0xfffffff0 }, | ||
262 | { 0x0007c0f0, 0xfffffff0 }, | ||
263 | { } | ||
264 | }; | ||
265 | |||
266 | MODULE_DEVICE_TABLE(mdio, smsc_tbl); | ||