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/marvell.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/marvell.c')
-rw-r--r-- | drivers/net/phy/marvell.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c index 65ed385c2ceb..c7e5b9f12861 100644 --- a/drivers/net/phy/marvell.c +++ b/drivers/net/phy/marvell.c | |||
@@ -649,3 +649,16 @@ static void __exit marvell_exit(void) | |||
649 | 649 | ||
650 | module_init(marvell_init); | 650 | module_init(marvell_init); |
651 | module_exit(marvell_exit); | 651 | module_exit(marvell_exit); |
652 | |||
653 | static struct mdio_device_id marvell_tbl[] = { | ||
654 | { 0x01410c60, 0xfffffff0 }, | ||
655 | { 0x01410c90, 0xfffffff0 }, | ||
656 | { 0x01410cc0, 0xfffffff0 }, | ||
657 | { 0x01410e10, 0xfffffff0 }, | ||
658 | { 0x01410cb0, 0xfffffff0 }, | ||
659 | { 0x01410cd0, 0xfffffff0 }, | ||
660 | { 0x01410e30, 0xfffffff0 }, | ||
661 | { } | ||
662 | }; | ||
663 | |||
664 | MODULE_DEVICE_TABLE(mdio, marvell_tbl); | ||