From eb08d71ba8cb8475f9aaabdb35a936274c3373c9 Mon Sep 17 00:00:00 2001 From: Gabor Juhos Date: Sun, 10 Feb 2013 13:05:12 +0000 Subject: [PATCH] generic: ar8216: skip probe on unused PHY addresses Signed-off-by: Gabor Juhos SVN-Revision: 35536 --- target/linux/generic/files/drivers/net/phy/ar8216.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/target/linux/generic/files/drivers/net/phy/ar8216.c b/target/linux/generic/files/drivers/net/phy/ar8216.c index 4547f7c3b1..45b2bd7a65 100644 --- a/target/linux/generic/files/drivers/net/phy/ar8216.c +++ b/target/linux/generic/files/drivers/net/phy/ar8216.c @@ -1962,6 +1962,10 @@ ar8216_probe(struct phy_device *pdev) struct ar8216_priv *priv; int ret; + /* skip PHYs at unused adresses */ + if (pdev->addr != 0 && pdev->addr != 4) + return -ENODEV; + priv = kzalloc(sizeof(struct ar8216_priv), GFP_KERNEL); if (priv == NULL) return -ENOMEM; -- 2.30.2