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/icplus.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/icplus.c')
-rw-r--r-- | drivers/net/phy/icplus.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/net/phy/icplus.c b/drivers/net/phy/icplus.c index af3f1f2a9f87..e661e9078a7d 100644 --- a/drivers/net/phy/icplus.c +++ b/drivers/net/phy/icplus.c | |||
@@ -132,3 +132,10 @@ static void __exit ip175c_exit(void) | |||
132 | 132 | ||
133 | module_init(ip175c_init); | 133 | module_init(ip175c_init); |
134 | module_exit(ip175c_exit); | 134 | module_exit(ip175c_exit); |
135 | |||
136 | static struct mdio_device_id icplus_tbl[] = { | ||
137 | { 0x02430d80, 0x0ffffff0 }, | ||
138 | { } | ||
139 | }; | ||
140 | |||
141 | MODULE_DEVICE_TABLE(mdio, icplus_tbl); | ||