diff options
author | Colin Cross <ccross@android.com> | 2012-02-01 14:10:59 -0800 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2012-02-14 11:30:49 -0800 |
commit | 7eaf839c7a921a5c20ff0dd2c8c03d1b4eeb37db (patch) | |
tree | e061266e53d2c84ac58ac6c060cf6d61c39e1715 /drivers/net/wireless/bcmdhd/dhd_linux.c | |
parent | a2d116668045dd40f3fed04e7430b01becd1bf8d (diff) |
wireless: bcmdhd: fix build for 3.3
ndo_set_multicast_list was replaced with ndo_set_rx_mode.
Add no_cck and dont_wait_for_ack parameters to mgmt_tx.
Change-Id: I56e0a924ee4417c6616336f9a8133425030b4d62
Signed-off-by: Colin Cross <ccross@android.com>
Diffstat (limited to 'drivers/net/wireless/bcmdhd/dhd_linux.c')
-rw-r--r-- | drivers/net/wireless/bcmdhd/dhd_linux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/bcmdhd/dhd_linux.c b/drivers/net/wireless/bcmdhd/dhd_linux.c index 233c89128303..b57af00a0482 100644 --- a/drivers/net/wireless/bcmdhd/dhd_linux.c +++ b/drivers/net/wireless/bcmdhd/dhd_linux.c @@ -2542,7 +2542,7 @@ static struct net_device_ops dhd_ops_pri = { .ndo_do_ioctl = dhd_ioctl_entry, .ndo_start_xmit = dhd_start_xmit, .ndo_set_mac_address = dhd_set_mac_address, - .ndo_set_multicast_list = dhd_set_multicast_list, + .ndo_set_rx_mode = dhd_set_multicast_list, }; static struct net_device_ops dhd_ops_virt = { @@ -2550,7 +2550,7 @@ static struct net_device_ops dhd_ops_virt = { .ndo_do_ioctl = dhd_ioctl_entry, .ndo_start_xmit = dhd_start_xmit, .ndo_set_mac_address = dhd_set_mac_address, - .ndo_set_multicast_list = dhd_set_multicast_list, + .ndo_set_rx_mode = dhd_set_multicast_list, }; #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 31)) */ |