Netdev List
 help / color / mirror / Atom feed
From: Florian Fainelli <florian.fainelli@telecomint.eu>
To: netdev@vger.kernel.org
Subject: [PATCH] Au1000 eth : fix ioctl handling
Date: Tue, 24 Jul 2007 11:15:50 +0200	[thread overview]
Message-ID: <200707241115.51486.florian.fainelli@telecomint.eu> (raw)


[-- Attachment #1.1: Type: text/plain, Size: 167 bytes --]

Hi all,

This patch fixes the handling of unsupported ioctls with the au1000_eth 
driver.

Signed-off-by: Florian Fainelli <florian.fainelli@telecomint.eu>
-- 

[-- Attachment #1.2: au1000_eth_ioctl.patch --]
[-- Type: text/plain, Size: 818 bytes --]

diff --git a/drivers/net/au1000_eth.c b/drivers/net/au1000_eth.c
index c27cfce..99a1c61 100644
--- a/drivers/net/au1000_eth.c
+++ b/drivers/net/au1000_eth.c
@@ -1316,12 +1316,20 @@ static void set_rx_mode(struct net_device *dev)
 static int au1000_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
 {
 	struct au1000_private *aup = (struct au1000_private *)dev->priv;
+	struct mii_ioctl_data *data = if_mii(rq);
+	int rc = -EOPNOTSUPP;
 
 	if (!netif_running(dev)) return -EINVAL;
 
 	if (!aup->phy_dev) return -EINVAL; // PHY not controllable
 
-	return phy_mii_ioctl(aup->phy_dev, if_mii(rq), cmd);
+	switch (cmd) {
+	default:
+		rc = phy_mii_ioctl(aup->phy_dev, data, cmd);
+		break;
+	}
+
+	return rc;
 }
 
 static struct net_device_stats *au1000_get_stats(struct net_device *dev)

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

                 reply	other threads:[~2007-07-24  9:47 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200707241115.51486.florian.fainelli@telecomint.eu \
    --to=florian.fainelli@telecomint.eu \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox