Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6
* 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6: [PATCH] Fix an offset error when reading the CS89x0 ADD_PORT register [PATCH] spidernet: poor network performance [PATCH] Spidernet: remove ETH_ZLEN check in earlier patch [PATCH] bonding: fix an oops when slave device does not provide get_stats [PATCH] drivers/net: SAA9730: Fix build error Revert "[PATCH] zd1211rw: Removed unneeded packed attributes" [PATCH] zd1211rw: Fix of a locking bug [PATCH] softmac: remove netif_tx_disable when scanning [PATCH] ieee80211: Fix kernel panic when QoS is enabled
This commit is contained in:
@@ -1769,8 +1769,8 @@ config VIA_RHINE_NAPI
|
|||||||
information.
|
information.
|
||||||
|
|
||||||
config LAN_SAA9730
|
config LAN_SAA9730
|
||||||
bool "Philips SAA9730 Ethernet support (EXPERIMENTAL)"
|
bool "Philips SAA9730 Ethernet support"
|
||||||
depends on NET_PCI && EXPERIMENTAL && MIPS
|
depends on NET_PCI && PCI && MIPS_ATLAS
|
||||||
help
|
help
|
||||||
The SAA9730 is a combined multimedia and peripheral controller used
|
The SAA9730 is a combined multimedia and peripheral controller used
|
||||||
in thin clients, Internet access terminals, and diskless
|
in thin clients, Internet access terminals, and diskless
|
||||||
|
@@ -1336,6 +1336,13 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
|
|||||||
goto err_undo_flags;
|
goto err_undo_flags;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (slave_dev->get_stats == NULL) {
|
||||||
|
printk(KERN_NOTICE DRV_NAME
|
||||||
|
": %s: the driver for slave device %s does not provide "
|
||||||
|
"get_stats function, network statistics will be "
|
||||||
|
"inaccurate.\n", bond_dev->name, slave_dev->name);
|
||||||
|
}
|
||||||
|
|
||||||
new_slave = kmalloc(sizeof(struct slave), GFP_KERNEL);
|
new_slave = kmalloc(sizeof(struct slave), GFP_KERNEL);
|
||||||
if (!new_slave) {
|
if (!new_slave) {
|
||||||
res = -ENOMEM;
|
res = -ENOMEM;
|
||||||
@@ -3605,33 +3612,35 @@ static struct net_device_stats *bond_get_stats(struct net_device *bond_dev)
|
|||||||
read_lock_bh(&bond->lock);
|
read_lock_bh(&bond->lock);
|
||||||
|
|
||||||
bond_for_each_slave(bond, slave, i) {
|
bond_for_each_slave(bond, slave, i) {
|
||||||
sstats = slave->dev->get_stats(slave->dev);
|
if (slave->dev->get_stats) {
|
||||||
|
sstats = slave->dev->get_stats(slave->dev);
|
||||||
|
|
||||||
stats->rx_packets += sstats->rx_packets;
|
stats->rx_packets += sstats->rx_packets;
|
||||||
stats->rx_bytes += sstats->rx_bytes;
|
stats->rx_bytes += sstats->rx_bytes;
|
||||||
stats->rx_errors += sstats->rx_errors;
|
stats->rx_errors += sstats->rx_errors;
|
||||||
stats->rx_dropped += sstats->rx_dropped;
|
stats->rx_dropped += sstats->rx_dropped;
|
||||||
|
|
||||||
stats->tx_packets += sstats->tx_packets;
|
stats->tx_packets += sstats->tx_packets;
|
||||||
stats->tx_bytes += sstats->tx_bytes;
|
stats->tx_bytes += sstats->tx_bytes;
|
||||||
stats->tx_errors += sstats->tx_errors;
|
stats->tx_errors += sstats->tx_errors;
|
||||||
stats->tx_dropped += sstats->tx_dropped;
|
stats->tx_dropped += sstats->tx_dropped;
|
||||||
|
|
||||||
stats->multicast += sstats->multicast;
|
stats->multicast += sstats->multicast;
|
||||||
stats->collisions += sstats->collisions;
|
stats->collisions += sstats->collisions;
|
||||||
|
|
||||||
stats->rx_length_errors += sstats->rx_length_errors;
|
stats->rx_length_errors += sstats->rx_length_errors;
|
||||||
stats->rx_over_errors += sstats->rx_over_errors;
|
stats->rx_over_errors += sstats->rx_over_errors;
|
||||||
stats->rx_crc_errors += sstats->rx_crc_errors;
|
stats->rx_crc_errors += sstats->rx_crc_errors;
|
||||||
stats->rx_frame_errors += sstats->rx_frame_errors;
|
stats->rx_frame_errors += sstats->rx_frame_errors;
|
||||||
stats->rx_fifo_errors += sstats->rx_fifo_errors;
|
stats->rx_fifo_errors += sstats->rx_fifo_errors;
|
||||||
stats->rx_missed_errors += sstats->rx_missed_errors;
|
stats->rx_missed_errors += sstats->rx_missed_errors;
|
||||||
|
|
||||||
stats->tx_aborted_errors += sstats->tx_aborted_errors;
|
stats->tx_aborted_errors += sstats->tx_aborted_errors;
|
||||||
stats->tx_carrier_errors += sstats->tx_carrier_errors;
|
stats->tx_carrier_errors += sstats->tx_carrier_errors;
|
||||||
stats->tx_fifo_errors += sstats->tx_fifo_errors;
|
stats->tx_fifo_errors += sstats->tx_fifo_errors;
|
||||||
stats->tx_heartbeat_errors += sstats->tx_heartbeat_errors;
|
stats->tx_heartbeat_errors += sstats->tx_heartbeat_errors;
|
||||||
stats->tx_window_errors += sstats->tx_window_errors;
|
stats->tx_window_errors += sstats->tx_window_errors;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
read_unlock_bh(&bond->lock);
|
read_unlock_bh(&bond->lock);
|
||||||
|
@@ -588,10 +588,10 @@ cs89x0_probe1(struct net_device *dev, int ioaddr, int modular)
|
|||||||
goto out2;
|
goto out2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
printk(KERN_DEBUG "PP_addr at %x[%x]: 0x%x\n",
|
|
||||||
ioaddr, ADD_PORT, readword(ioaddr, ADD_PORT));
|
|
||||||
|
|
||||||
ioaddr &= ~3;
|
ioaddr &= ~3;
|
||||||
|
printk(KERN_DEBUG "PP_addr at %x[%x]: 0x%x\n",
|
||||||
|
ioaddr, ADD_PORT, readword(ioaddr, ADD_PORT));
|
||||||
writeword(ioaddr, ADD_PORT, PP_ChipID);
|
writeword(ioaddr, ADD_PORT, PP_ChipID);
|
||||||
|
|
||||||
tmp = readword(ioaddr, DATA_PORT);
|
tmp = readword(ioaddr, DATA_PORT);
|
||||||
|
@@ -644,20 +644,12 @@ spider_net_prepare_tx_descr(struct spider_net_card *card,
|
|||||||
struct spider_net_descr *descr;
|
struct spider_net_descr *descr;
|
||||||
dma_addr_t buf;
|
dma_addr_t buf;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
int length;
|
|
||||||
|
|
||||||
length = skb->len;
|
buf = pci_map_single(card->pdev, skb->data, skb->len, PCI_DMA_TODEVICE);
|
||||||
if (length < ETH_ZLEN) {
|
|
||||||
if (skb_pad(skb, ETH_ZLEN-length))
|
|
||||||
return 0;
|
|
||||||
length = ETH_ZLEN;
|
|
||||||
}
|
|
||||||
|
|
||||||
buf = pci_map_single(card->pdev, skb->data, length, PCI_DMA_TODEVICE);
|
|
||||||
if (pci_dma_mapping_error(buf)) {
|
if (pci_dma_mapping_error(buf)) {
|
||||||
if (netif_msg_tx_err(card) && net_ratelimit())
|
if (netif_msg_tx_err(card) && net_ratelimit())
|
||||||
pr_err("could not iommu-map packet (%p, %i). "
|
pr_err("could not iommu-map packet (%p, %i). "
|
||||||
"Dropping packet\n", skb->data, length);
|
"Dropping packet\n", skb->data, skb->len);
|
||||||
card->spider_stats.tx_iommu_map_error++;
|
card->spider_stats.tx_iommu_map_error++;
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
@@ -667,7 +659,7 @@ spider_net_prepare_tx_descr(struct spider_net_card *card,
|
|||||||
card->tx_chain.head = descr->next;
|
card->tx_chain.head = descr->next;
|
||||||
|
|
||||||
descr->buf_addr = buf;
|
descr->buf_addr = buf;
|
||||||
descr->buf_size = length;
|
descr->buf_size = skb->len;
|
||||||
descr->next_descr_addr = 0;
|
descr->next_descr_addr = 0;
|
||||||
descr->skb = skb;
|
descr->skb = skb;
|
||||||
descr->data_status = 0;
|
descr->data_status = 0;
|
||||||
@@ -802,8 +794,8 @@ spider_net_release_tx_chain(struct spider_net_card *card, int brutal)
|
|||||||
|
|
||||||
/* unmap the skb */
|
/* unmap the skb */
|
||||||
if (skb) {
|
if (skb) {
|
||||||
int len = skb->len < ETH_ZLEN ? ETH_ZLEN : skb->len;
|
pci_unmap_single(card->pdev, buf_addr, skb->len,
|
||||||
pci_unmap_single(card->pdev, buf_addr, len, PCI_DMA_TODEVICE);
|
PCI_DMA_TODEVICE);
|
||||||
dev_kfree_skb(skb);
|
dev_kfree_skb(skb);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1641,7 +1633,7 @@ spider_net_enable_card(struct spider_net_card *card)
|
|||||||
SPIDER_NET_INT2_MASK_VALUE);
|
SPIDER_NET_INT2_MASK_VALUE);
|
||||||
|
|
||||||
spider_net_write_reg(card, SPIDER_NET_GDTDMACCNTR,
|
spider_net_write_reg(card, SPIDER_NET_GDTDMACCNTR,
|
||||||
SPIDER_NET_GDTBSTA | SPIDER_NET_GDTDCEIDIS);
|
SPIDER_NET_GDTBSTA);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -24,7 +24,7 @@
|
|||||||
#ifndef _SPIDER_NET_H
|
#ifndef _SPIDER_NET_H
|
||||||
#define _SPIDER_NET_H
|
#define _SPIDER_NET_H
|
||||||
|
|
||||||
#define VERSION "1.1 A"
|
#define VERSION "1.6 A"
|
||||||
|
|
||||||
#include "sungem_phy.h"
|
#include "sungem_phy.h"
|
||||||
|
|
||||||
@@ -217,8 +217,7 @@ extern char spider_net_driver_name[];
|
|||||||
#define SPIDER_NET_GDTBSTA 0x00000300
|
#define SPIDER_NET_GDTBSTA 0x00000300
|
||||||
#define SPIDER_NET_GDTDCEIDIS 0x00000002
|
#define SPIDER_NET_GDTDCEIDIS 0x00000002
|
||||||
#define SPIDER_NET_DMA_TX_VALUE SPIDER_NET_TX_DMA_EN | \
|
#define SPIDER_NET_DMA_TX_VALUE SPIDER_NET_TX_DMA_EN | \
|
||||||
SPIDER_NET_GDTBSTA | \
|
SPIDER_NET_GDTBSTA
|
||||||
SPIDER_NET_GDTDCEIDIS
|
|
||||||
|
|
||||||
#define SPIDER_NET_DMA_TX_FEND_VALUE 0x00030003
|
#define SPIDER_NET_DMA_TX_FEND_VALUE 0x00030003
|
||||||
|
|
||||||
@@ -328,7 +327,8 @@ enum spider_net_int2_status {
|
|||||||
SPIDER_NET_GRISPDNGINT
|
SPIDER_NET_GRISPDNGINT
|
||||||
};
|
};
|
||||||
|
|
||||||
#define SPIDER_NET_TXINT ( (1 << SPIDER_NET_GDTFDCINT) )
|
#define SPIDER_NET_TXINT ( (1 << SPIDER_NET_GDTFDCINT) | \
|
||||||
|
(1 << SPIDER_NET_GDTDCEINT) )
|
||||||
|
|
||||||
/* We rely on flagged descriptor interrupts */
|
/* We rely on flagged descriptor interrupts */
|
||||||
#define SPIDER_NET_RXINT ( (1 << SPIDER_NET_GDAFDCINT) )
|
#define SPIDER_NET_RXINT ( (1 << SPIDER_NET_GDAFDCINT) )
|
||||||
|
@@ -64,7 +64,7 @@ struct cck_plcp_header {
|
|||||||
u8 service;
|
u8 service;
|
||||||
__le16 length;
|
__le16 length;
|
||||||
__le16 crc16;
|
__le16 crc16;
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
static inline u8 zd_cck_plcp_header_rate(const struct cck_plcp_header *header)
|
static inline u8 zd_cck_plcp_header_rate(const struct cck_plcp_header *header)
|
||||||
{
|
{
|
||||||
|
@@ -721,7 +721,7 @@ struct zd_rt_hdr {
|
|||||||
u8 rt_rate;
|
u8 rt_rate;
|
||||||
u16 rt_channel;
|
u16 rt_channel;
|
||||||
u16 rt_chbitmask;
|
u16 rt_chbitmask;
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
static void fill_rt_header(void *buffer, struct zd_mac *mac,
|
static void fill_rt_header(void *buffer, struct zd_mac *mac,
|
||||||
const struct ieee80211_rx_stats *stats,
|
const struct ieee80211_rx_stats *stats,
|
||||||
|
@@ -82,7 +82,7 @@ struct zd_ctrlset {
|
|||||||
struct rx_length_info {
|
struct rx_length_info {
|
||||||
__le16 length[3];
|
__le16 length[3];
|
||||||
__le16 tag;
|
__le16 tag;
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
#define RX_LENGTH_INFO_TAG 0x697e
|
#define RX_LENGTH_INFO_TAG 0x697e
|
||||||
|
|
||||||
@@ -93,7 +93,7 @@ struct rx_status {
|
|||||||
u8 signal_quality_ofdm;
|
u8 signal_quality_ofdm;
|
||||||
u8 decryption_type;
|
u8 decryption_type;
|
||||||
u8 frame_status;
|
u8 frame_status;
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
/* rx_status field decryption_type */
|
/* rx_status field decryption_type */
|
||||||
#define ZD_RX_NO_WEP 0
|
#define ZD_RX_NO_WEP 0
|
||||||
|
@@ -366,15 +366,6 @@ error:
|
|||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void disable_read_regs_int(struct zd_usb *usb)
|
|
||||||
{
|
|
||||||
struct zd_usb_interrupt *intr = &usb->intr;
|
|
||||||
|
|
||||||
spin_lock(&intr->lock);
|
|
||||||
intr->read_regs_enabled = 0;
|
|
||||||
spin_unlock(&intr->lock);
|
|
||||||
}
|
|
||||||
|
|
||||||
#define urb_dev(urb) (&(urb)->dev->dev)
|
#define urb_dev(urb) (&(urb)->dev->dev)
|
||||||
|
|
||||||
static inline void handle_regs_int(struct urb *urb)
|
static inline void handle_regs_int(struct urb *urb)
|
||||||
@@ -1156,10 +1147,19 @@ static void prepare_read_regs_int(struct zd_usb *usb)
|
|||||||
{
|
{
|
||||||
struct zd_usb_interrupt *intr = &usb->intr;
|
struct zd_usb_interrupt *intr = &usb->intr;
|
||||||
|
|
||||||
spin_lock(&intr->lock);
|
spin_lock_irq(&intr->lock);
|
||||||
intr->read_regs_enabled = 1;
|
intr->read_regs_enabled = 1;
|
||||||
INIT_COMPLETION(intr->read_regs.completion);
|
INIT_COMPLETION(intr->read_regs.completion);
|
||||||
spin_unlock(&intr->lock);
|
spin_unlock_irq(&intr->lock);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void disable_read_regs_int(struct zd_usb *usb)
|
||||||
|
{
|
||||||
|
struct zd_usb_interrupt *intr = &usb->intr;
|
||||||
|
|
||||||
|
spin_lock_irq(&intr->lock);
|
||||||
|
intr->read_regs_enabled = 0;
|
||||||
|
spin_unlock_irq(&intr->lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int get_results(struct zd_usb *usb, u16 *values,
|
static int get_results(struct zd_usb *usb, u16 *values,
|
||||||
@@ -1171,7 +1171,7 @@ static int get_results(struct zd_usb *usb, u16 *values,
|
|||||||
struct read_regs_int *rr = &intr->read_regs;
|
struct read_regs_int *rr = &intr->read_regs;
|
||||||
struct usb_int_regs *regs = (struct usb_int_regs *)rr->buffer;
|
struct usb_int_regs *regs = (struct usb_int_regs *)rr->buffer;
|
||||||
|
|
||||||
spin_lock(&intr->lock);
|
spin_lock_irq(&intr->lock);
|
||||||
|
|
||||||
r = -EIO;
|
r = -EIO;
|
||||||
/* The created block size seems to be larger than expected.
|
/* The created block size seems to be larger than expected.
|
||||||
@@ -1204,7 +1204,7 @@ static int get_results(struct zd_usb *usb, u16 *values,
|
|||||||
|
|
||||||
r = 0;
|
r = 0;
|
||||||
error_unlock:
|
error_unlock:
|
||||||
spin_unlock(&intr->lock);
|
spin_unlock_irq(&intr->lock);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -74,17 +74,17 @@ enum control_requests {
|
|||||||
struct usb_req_read_regs {
|
struct usb_req_read_regs {
|
||||||
__le16 id;
|
__le16 id;
|
||||||
__le16 addr[0];
|
__le16 addr[0];
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
struct reg_data {
|
struct reg_data {
|
||||||
__le16 addr;
|
__le16 addr;
|
||||||
__le16 value;
|
__le16 value;
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
struct usb_req_write_regs {
|
struct usb_req_write_regs {
|
||||||
__le16 id;
|
__le16 id;
|
||||||
struct reg_data reg_writes[0];
|
struct reg_data reg_writes[0];
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
RF_IF_LE = 0x02,
|
RF_IF_LE = 0x02,
|
||||||
@@ -101,7 +101,7 @@ struct usb_req_rfwrite {
|
|||||||
/* RF2595: 24 */
|
/* RF2595: 24 */
|
||||||
__le16 bit_values[0];
|
__le16 bit_values[0];
|
||||||
/* (CR203 & ~(RF_IF_LE | RF_CLK | RF_DATA)) | (bit ? RF_DATA : 0) */
|
/* (CR203 & ~(RF_IF_LE | RF_CLK | RF_DATA)) | (bit ? RF_DATA : 0) */
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
/* USB interrupt */
|
/* USB interrupt */
|
||||||
|
|
||||||
@@ -118,12 +118,12 @@ enum usb_int_flags {
|
|||||||
struct usb_int_header {
|
struct usb_int_header {
|
||||||
u8 type; /* must always be 1 */
|
u8 type; /* must always be 1 */
|
||||||
u8 id;
|
u8 id;
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
struct usb_int_regs {
|
struct usb_int_regs {
|
||||||
struct usb_int_header hdr;
|
struct usb_int_header hdr;
|
||||||
struct reg_data regs[0];
|
struct reg_data regs[0];
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
struct usb_int_retry_fail {
|
struct usb_int_retry_fail {
|
||||||
struct usb_int_header hdr;
|
struct usb_int_header hdr;
|
||||||
@@ -131,7 +131,7 @@ struct usb_int_retry_fail {
|
|||||||
u8 _dummy;
|
u8 _dummy;
|
||||||
u8 addr[ETH_ALEN];
|
u8 addr[ETH_ALEN];
|
||||||
u8 ibss_wakeup_dest;
|
u8 ibss_wakeup_dest;
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
struct read_regs_int {
|
struct read_regs_int {
|
||||||
struct completion completion;
|
struct completion completion;
|
||||||
|
@@ -390,7 +390,7 @@ int ieee80211_xmit(struct sk_buff *skb, struct net_device *dev)
|
|||||||
* this stack is providing the full 802.11 header, one will
|
* this stack is providing the full 802.11 header, one will
|
||||||
* eventually be affixed to this fragment -- so we must account
|
* eventually be affixed to this fragment -- so we must account
|
||||||
* for it when determining the amount of payload space. */
|
* for it when determining the amount of payload space. */
|
||||||
bytes_per_frag = frag_size - IEEE80211_3ADDR_LEN;
|
bytes_per_frag = frag_size - hdr_len;
|
||||||
if (ieee->config &
|
if (ieee->config &
|
||||||
(CFG_IEEE80211_COMPUTE_FCS | CFG_IEEE80211_RESERVE_FCS))
|
(CFG_IEEE80211_COMPUTE_FCS | CFG_IEEE80211_RESERVE_FCS))
|
||||||
bytes_per_frag -= IEEE80211_FCS_LEN;
|
bytes_per_frag -= IEEE80211_FCS_LEN;
|
||||||
@@ -412,7 +412,7 @@ int ieee80211_xmit(struct sk_buff *skb, struct net_device *dev)
|
|||||||
} else {
|
} else {
|
||||||
nr_frags = 1;
|
nr_frags = 1;
|
||||||
bytes_per_frag = bytes_last_frag = bytes;
|
bytes_per_frag = bytes_last_frag = bytes;
|
||||||
frag_size = bytes + IEEE80211_3ADDR_LEN;
|
frag_size = bytes + hdr_len;
|
||||||
}
|
}
|
||||||
|
|
||||||
rts_required = (frag_size > ieee->rts
|
rts_required = (frag_size > ieee->rts
|
||||||
|
@@ -47,7 +47,6 @@ ieee80211softmac_start_scan(struct ieee80211softmac_device *sm)
|
|||||||
sm->scanning = 1;
|
sm->scanning = 1;
|
||||||
spin_unlock_irqrestore(&sm->lock, flags);
|
spin_unlock_irqrestore(&sm->lock, flags);
|
||||||
|
|
||||||
netif_tx_disable(sm->ieee->dev);
|
|
||||||
ret = sm->start_scan(sm->dev);
|
ret = sm->start_scan(sm->dev);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
spin_lock_irqsave(&sm->lock, flags);
|
spin_lock_irqsave(&sm->lock, flags);
|
||||||
@@ -248,7 +247,6 @@ void ieee80211softmac_scan_finished(struct ieee80211softmac_device *sm)
|
|||||||
if (net)
|
if (net)
|
||||||
sm->set_channel(sm->dev, net->channel);
|
sm->set_channel(sm->dev, net->channel);
|
||||||
}
|
}
|
||||||
netif_wake_queue(sm->ieee->dev);
|
|
||||||
ieee80211softmac_call_events(sm, IEEE80211SOFTMAC_EVENT_SCAN_FINISHED, NULL);
|
ieee80211softmac_call_events(sm, IEEE80211SOFTMAC_EVENT_SCAN_FINISHED, NULL);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(ieee80211softmac_scan_finished);
|
EXPORT_SYMBOL_GPL(ieee80211softmac_scan_finished);
|
||||||
|
Reference in New Issue
Block a user