Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=dda93b486a25009456fca6b9c925ab4d7c6b6d6a
Commit:     dda93b486a25009456fca6b9c925ab4d7c6b6d6a
Parent:     3d26e69533e4df45d03c0b9fa0b3f7e84980b873
Author:     David Woodhouse <[EMAIL PROTECTED]>
AuthorDate: Wed Nov 28 19:56:34 2007 +0000
Committer:  Jeff Garzik <[EMAIL PROTECTED]>
CommitDate: Sat Dec 1 16:35:51 2007 -0500

    Stop phy code from returning success to unknown ioctls.
    
    This kind of sucks, and prevents the Fedora installer from using the
    device for network installs...
    
    [EMAIL PROTECTED] phy]# iwconfig eth0
    Warning: Driver for device eth0 has been compiled with an ancient version
    of Wireless Extension, while this program support version 11 and later.
    Some things may be broken...
    
    eth0        ESSID:off/any  Nickname:""
              NWID:0  Channel:0  Access Point: 00:00:BF:81:14:E0
              Bit Rate:-1.08206e+06 kb/s   Sensitivity=0/0
              RTS thr:off   Fragment thr:off
              Encryption key:<too big>
              Power Management:off
    
    Signed-off-by: David Woodhouse <[EMAIL PROTECTED]>
    Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>
---
 drivers/net/phy/phy.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c
index 9bc1177..7c9e6e3 100644
--- a/drivers/net/phy/phy.c
+++ b/drivers/net/phy/phy.c
@@ -406,6 +406,9 @@ int phy_mii_ioctl(struct phy_device *phydev,
                                && phydev->drv->config_init)
                        phydev->drv->config_init(phydev);
                break;
+
+       default:
+               return -ENOTTY;
        }
 
        return 0;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to