WorkStruct: make allyesconfig
Fix up for make allyesconfig. Signed-Off-By: David Howells <dhowells@redhat.com>
This commit is contained in:
@@ -35,7 +35,7 @@ int hostap_80211_get_hdrlen(u16 fc);
|
||||
struct net_device_stats *hostap_get_stats(struct net_device *dev);
|
||||
void hostap_setup_dev(struct net_device *dev, local_info_t *local,
|
||||
int main_dev);
|
||||
void hostap_set_multicast_list_queue(void *data);
|
||||
void hostap_set_multicast_list_queue(struct work_struct *work);
|
||||
int hostap_set_hostapd(local_info_t *local, int val, int rtnl_locked);
|
||||
int hostap_set_hostapd_sta(local_info_t *local, int val, int rtnl_locked);
|
||||
void hostap_cleanup(local_info_t *local);
|
||||
|
@@ -49,10 +49,10 @@ MODULE_PARM_DESC(autom_ap_wds, "Add WDS connections to other APs "
|
||||
static struct sta_info* ap_get_sta(struct ap_data *ap, u8 *sta);
|
||||
static void hostap_event_expired_sta(struct net_device *dev,
|
||||
struct sta_info *sta);
|
||||
static void handle_add_proc_queue(void *data);
|
||||
static void handle_add_proc_queue(struct work_struct *work);
|
||||
|
||||
#ifndef PRISM2_NO_KERNEL_IEEE80211_MGMT
|
||||
static void handle_wds_oper_queue(void *data);
|
||||
static void handle_wds_oper_queue(struct work_struct *work);
|
||||
static void prism2_send_mgmt(struct net_device *dev,
|
||||
u16 type_subtype, char *body,
|
||||
int body_len, u8 *addr, u16 tx_cb_idx);
|
||||
@@ -807,7 +807,7 @@ void hostap_init_data(local_info_t *local)
|
||||
INIT_LIST_HEAD(&ap->sta_list);
|
||||
|
||||
/* Initialize task queue structure for AP management */
|
||||
INIT_WORK(&local->ap->add_sta_proc_queue, handle_add_proc_queue, ap);
|
||||
INIT_WORK(&local->ap->add_sta_proc_queue, handle_add_proc_queue);
|
||||
|
||||
ap->tx_callback_idx =
|
||||
hostap_tx_callback_register(local, hostap_ap_tx_cb, ap);
|
||||
@@ -815,7 +815,7 @@ void hostap_init_data(local_info_t *local)
|
||||
printk(KERN_WARNING "%s: failed to register TX callback for "
|
||||
"AP\n", local->dev->name);
|
||||
#ifndef PRISM2_NO_KERNEL_IEEE80211_MGMT
|
||||
INIT_WORK(&local->ap->wds_oper_queue, handle_wds_oper_queue, local);
|
||||
INIT_WORK(&local->ap->wds_oper_queue, handle_wds_oper_queue);
|
||||
|
||||
ap->tx_callback_auth =
|
||||
hostap_tx_callback_register(local, hostap_ap_tx_cb_auth, ap);
|
||||
@@ -1062,9 +1062,10 @@ static int prism2_sta_proc_read(char *page, char **start, off_t off,
|
||||
}
|
||||
|
||||
|
||||
static void handle_add_proc_queue(void *data)
|
||||
static void handle_add_proc_queue(struct work_struct *work)
|
||||
{
|
||||
struct ap_data *ap = (struct ap_data *) data;
|
||||
struct ap_data *ap = container_of(work, struct ap_data,
|
||||
add_sta_proc_queue);
|
||||
struct sta_info *sta;
|
||||
char name[20];
|
||||
struct add_sta_proc_data *entry, *prev;
|
||||
@@ -1952,9 +1953,11 @@ static void handle_pspoll(local_info_t *local,
|
||||
|
||||
#ifndef PRISM2_NO_KERNEL_IEEE80211_MGMT
|
||||
|
||||
static void handle_wds_oper_queue(void *data)
|
||||
static void handle_wds_oper_queue(struct work_struct *work)
|
||||
{
|
||||
local_info_t *local = data;
|
||||
struct ap_data *ap = container_of(work, struct ap_data,
|
||||
wds_oper_queue);
|
||||
local_info_t *local = ap->local;
|
||||
struct wds_oper_data *entry, *prev;
|
||||
|
||||
spin_lock_bh(&local->lock);
|
||||
|
@@ -1645,9 +1645,9 @@ static void prism2_schedule_reset(local_info_t *local)
|
||||
|
||||
/* Called only as scheduled task after noticing card timeout in interrupt
|
||||
* context */
|
||||
static void handle_reset_queue(void *data)
|
||||
static void handle_reset_queue(struct work_struct *work)
|
||||
{
|
||||
local_info_t *local = (local_info_t *) data;
|
||||
local_info_t *local = container_of(work, local_info_t, reset_queue);
|
||||
|
||||
printk(KERN_DEBUG "%s: scheduled card reset\n", local->dev->name);
|
||||
prism2_hw_reset(local->dev);
|
||||
@@ -2896,9 +2896,10 @@ static void hostap_passive_scan(unsigned long data)
|
||||
|
||||
/* Called only as a scheduled task when communications quality values should
|
||||
* be updated. */
|
||||
static void handle_comms_qual_update(void *data)
|
||||
static void handle_comms_qual_update(struct work_struct *work)
|
||||
{
|
||||
local_info_t *local = data;
|
||||
local_info_t *local =
|
||||
container_of(work, local_info_t, comms_qual_update);
|
||||
prism2_update_comms_qual(local->dev);
|
||||
}
|
||||
|
||||
@@ -3050,9 +3051,9 @@ static int prism2_set_tim(struct net_device *dev, int aid, int set)
|
||||
}
|
||||
|
||||
|
||||
static void handle_set_tim_queue(void *data)
|
||||
static void handle_set_tim_queue(struct work_struct *work)
|
||||
{
|
||||
local_info_t *local = (local_info_t *) data;
|
||||
local_info_t *local = container_of(work, local_info_t, set_tim_queue);
|
||||
struct set_tim_data *entry;
|
||||
u16 val;
|
||||
|
||||
@@ -3209,15 +3210,15 @@ prism2_init_local_data(struct prism2_helper_functions *funcs, int card_idx,
|
||||
local->scan_channel_mask = 0xffff;
|
||||
|
||||
/* Initialize task queue structures */
|
||||
INIT_WORK(&local->reset_queue, handle_reset_queue, local);
|
||||
INIT_WORK(&local->reset_queue, handle_reset_queue);
|
||||
INIT_WORK(&local->set_multicast_list_queue,
|
||||
hostap_set_multicast_list_queue, local->dev);
|
||||
hostap_set_multicast_list_queue);
|
||||
|
||||
INIT_WORK(&local->set_tim_queue, handle_set_tim_queue, local);
|
||||
INIT_WORK(&local->set_tim_queue, handle_set_tim_queue);
|
||||
INIT_LIST_HEAD(&local->set_tim_list);
|
||||
spin_lock_init(&local->set_tim_lock);
|
||||
|
||||
INIT_WORK(&local->comms_qual_update, handle_comms_qual_update, local);
|
||||
INIT_WORK(&local->comms_qual_update, handle_comms_qual_update);
|
||||
|
||||
/* Initialize tasklets for handling hardware IRQ related operations
|
||||
* outside hw IRQ handler */
|
||||
|
@@ -474,9 +474,9 @@ static void handle_info_queue_scanresults(local_info_t *local)
|
||||
|
||||
/* Called only as scheduled task after receiving info frames (used to avoid
|
||||
* pending too much time in HW IRQ handler). */
|
||||
static void handle_info_queue(void *data)
|
||||
static void handle_info_queue(struct work_struct *work)
|
||||
{
|
||||
local_info_t *local = (local_info_t *) data;
|
||||
local_info_t *local = container_of(work, local_info_t, info_queue);
|
||||
|
||||
if (test_and_clear_bit(PRISM2_INFO_PENDING_LINKSTATUS,
|
||||
&local->pending_info))
|
||||
@@ -493,7 +493,7 @@ void hostap_info_init(local_info_t *local)
|
||||
{
|
||||
skb_queue_head_init(&local->info_list);
|
||||
#ifndef PRISM2_NO_STATION_MODES
|
||||
INIT_WORK(&local->info_queue, handle_info_queue, local);
|
||||
INIT_WORK(&local->info_queue, handle_info_queue);
|
||||
#endif /* PRISM2_NO_STATION_MODES */
|
||||
}
|
||||
|
||||
|
@@ -767,14 +767,14 @@ static int prism2_set_mac_address(struct net_device *dev, void *p)
|
||||
|
||||
/* TODO: to be further implemented as soon as Prism2 fully supports
|
||||
* GroupAddresses and correct documentation is available */
|
||||
void hostap_set_multicast_list_queue(void *data)
|
||||
void hostap_set_multicast_list_queue(struct work_struct *work)
|
||||
{
|
||||
struct net_device *dev = (struct net_device *) data;
|
||||
local_info_t *local =
|
||||
container_of(work, local_info_t, set_multicast_list_queue);
|
||||
struct net_device *dev = local->dev;
|
||||
struct hostap_interface *iface;
|
||||
local_info_t *local;
|
||||
|
||||
iface = netdev_priv(dev);
|
||||
local = iface->local;
|
||||
if (hostap_set_word(dev, HFA384X_RID_PROMISCUOUSMODE,
|
||||
local->is_promisc)) {
|
||||
printk(KERN_INFO "%s: %sabling promiscuous mode failed\n",
|
||||
|
Reference in New Issue
Block a user