diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-01-17 14:05:19 +0100 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-01-18 12:41:11 +0100 |
commit | d6f802612af55cc1b3699d119a04dfa2fc8812a0 (patch) | |
tree | 132dbef3b75f5b68e206446f1e3fee112b09d2c0 /drivers/net/wireless | |
parent | Merge remote branch 'wireless-next/master' into ath6kl-next (diff) | |
download | linux-d6f802612af55cc1b3699d119a04dfa2fc8812a0.tar.xz linux-d6f802612af55cc1b3699d119a04dfa2fc8812a0.zip |
ath6kl: use netdev_features_t
Commit c8f44affb7 ("net: introduce and use netdev_features_t for
device features sets") added netdev_features_t to ndo_set_features.
Change ath6kl to use the new type.
This fixes a warning:
ath6kl/main.c:1170: warning: initialization from incompatible pointer type
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/main.c b/drivers/net/wireless/ath/ath6kl/main.c index 0a6d6e2be6e9..3a3b2cc9940d 100644 --- a/drivers/net/wireless/ath/ath6kl/main.c +++ b/drivers/net/wireless/ath/ath6kl/main.c @@ -1021,7 +1021,8 @@ static struct net_device_stats *ath6kl_get_stats(struct net_device *dev) return &vif->net_stats; } -static int ath6kl_set_features(struct net_device *dev, u32 features) +static int ath6kl_set_features(struct net_device *dev, + netdev_features_t features) { struct ath6kl_vif *vif = netdev_priv(dev); struct ath6kl *ar = vif->ar; |