[PATCH] softmac: correctly use netif_carrier_{on,off}

TODO: add callbacks for ifup/ifdown (see mailing list)

Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Johannes Berg
2006-01-06 18:11:23 +01:00
کامیت شده توسط John W. Linville
والد 5c4df6da58
کامیت 2dd50801b3
3فایلهای تغییر یافته به همراه6 افزوده شده و 15 حذف شده

مشاهده پرونده

@@ -40,21 +40,10 @@ struct net_device *alloc_ieee80211softmac(int sizeof_priv)
softmac->txrates.default_rate = IEEE80211_CCK_RATE_1MB;
softmac->txrates.default_fallback = IEEE80211_CCK_RATE_1MB;
/* should we also assign softmac->mgmt_xmit here so
* that it is always valid? If so, we probably want
* to define a new function for that which just
* wraps ieee80211_tx_frame
*/
/* to start with, we can't send anything ... */
netif_carrier_off(dev);
/* until associated, we're not ready */
dev->flags &= ~IFF_RUNNING;
return dev;
err_free_ieee80211:
free_ieee80211(dev);
return NULL;
}
/* Clears the pending work queue items, stops all scans, etc. */