mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 23:37:29 +02:00
0fc3447849
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11204 3c298f89-4303-0410-b956-a3cf2f4a3e73
75 lines
2.0 KiB
Diff
75 lines
2.0 KiB
Diff
Index: linux-2.6.21.7/drivers/net/ixp4xx/mac_driver.c
|
|
===================================================================
|
|
--- linux-2.6.21.7.orig/drivers/net/ixp4xx/mac_driver.c
|
|
+++ linux-2.6.21.7/drivers/net/ixp4xx/mac_driver.c
|
|
@@ -161,6 +161,16 @@ static int media_check(struct net_device
|
|
{
|
|
struct mac_info *mac = netdev_priv(dev);
|
|
|
|
+ if ( mac->mii.phy_id < 0 ) {
|
|
+ if ( init ) {
|
|
+ netif_carrier_on(mac->mii.dev);
|
|
+ mac->mii.full_duplex = 1;
|
|
+ update_duplex_mode(dev);
|
|
+ return 1;
|
|
+ }
|
|
+ return 0;
|
|
+ }
|
|
+
|
|
if (mii_check_media(&mac->mii, netif_msg_link(mac), init)) {
|
|
update_duplex_mode(dev);
|
|
return 1;
|
|
@@ -448,7 +458,12 @@ static int ixmac_ioctl(struct net_device
|
|
return -EINVAL;
|
|
if (!try_module_get(THIS_MODULE))
|
|
return -ENODEV;
|
|
- rc = generic_mii_ioctl(&mac->mii, if_mii(rq), cmd, &duplex_changed);
|
|
+ if ( mac->mii.phy_id < 0 ) {
|
|
+ duplex_changed = 0;
|
|
+ rc = -EOPNOTSUPP;
|
|
+ } else {
|
|
+ rc = generic_mii_ioctl(&mac->mii, if_mii(rq), cmd, &duplex_changed);
|
|
+ }
|
|
module_put(THIS_MODULE);
|
|
if (duplex_changed)
|
|
update_duplex_mode(dev);
|
|
@@ -478,6 +493,9 @@ static void ixmac_get_drvinfo(struct net
|
|
static int ixmac_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
|
|
{
|
|
struct mac_info *mac = netdev_priv(dev);
|
|
+ if ( mac->mii.phy_id < 0 ) {
|
|
+ return 0;
|
|
+ }
|
|
mii_ethtool_gset(&mac->mii, cmd);
|
|
return 0;
|
|
}
|
|
@@ -486,6 +504,9 @@ static int ixmac_set_settings(struct net
|
|
{
|
|
struct mac_info *mac = netdev_priv(dev);
|
|
int rc;
|
|
+ if ( mac->mii.phy_id < 0 ) {
|
|
+ return -EOPNOTSUPP;
|
|
+ }
|
|
rc = mii_ethtool_sset(&mac->mii, cmd);
|
|
return rc;
|
|
}
|
|
@@ -493,12 +514,18 @@ static int ixmac_set_settings(struct net
|
|
static int ixmac_nway_reset(struct net_device *dev)
|
|
{
|
|
struct mac_info *mac = netdev_priv(dev);
|
|
+ if ( mac->mii.phy_id < 0 ) {
|
|
+ return -EOPNOTSUPP;
|
|
+ }
|
|
return mii_nway_restart(&mac->mii);
|
|
}
|
|
|
|
static u32 ixmac_get_link(struct net_device *dev)
|
|
{
|
|
struct mac_info *mac = netdev_priv(dev);
|
|
+ if ( mac->mii.phy_id < 0 ) {
|
|
+ return 1;
|
|
+ }
|
|
return mii_link_ok(&mac->mii);
|
|
}
|
|
|