diff mbox

[1/2] drivers: net: phy: at803x: Add missing mdio device id

Message ID 1373543855-31670-1-git-send-email-helmut.schaa@googlemail.com
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Helmut Schaa July 11, 2013, 11:57 a.m. UTC
at803x supports Atheros 8030, 8031 and 8035 PHYs. 8031 was missing from
the mdio device id table.

Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
---
 drivers/net/phy/at803x.c |    1 +
 1 file changed, 1 insertion(+)

Comments

David Miller July 11, 2013, 6:54 p.m. UTC | #1
From: Helmut Schaa <helmut.schaa@googlemail.com>
Date: Thu, 11 Jul 2013 13:57:34 +0200

> at803x supports Atheros 8030, 8031 and 8035 PHYs. 8031 was missing from
> the mdio device id table.
> 
> Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>

Applied.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/net/phy/at803x.c b/drivers/net/phy/at803x.c
index 1f7091b..ac22283 100644
--- a/drivers/net/phy/at803x.c
+++ b/drivers/net/phy/at803x.c
@@ -217,6 +217,7 @@  module_exit(atheros_exit);
 
 static struct mdio_device_id __maybe_unused atheros_tbl[] = {
 	{ 0x004dd076, 0xffffffef },
+	{ 0x004dd074, 0xffffffef },
 	{ 0x004dd072, 0xffffffef },
 	{ }
 };