Skip to content

Commit

Permalink
[wireless] zd1211rw: workqueue-related build fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Garzik <jeff@garzik.org>
  • Loading branch information
Jeff Garzik committed Dec 7, 2006
1 parent 0bfdcc8 commit 0ae8513
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/net/wireless/zd1211rw/zd_mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static void housekeeping_init(struct zd_mac *mac);
static void housekeeping_enable(struct zd_mac *mac);
static void housekeeping_disable(struct zd_mac *mac);

static void set_multicast_hash_handler(void *mac_ptr);
static void set_multicast_hash_handler(struct work_struct *work);

int zd_mac_init(struct zd_mac *mac,
struct net_device *netdev,
Expand All @@ -57,8 +57,7 @@ int zd_mac_init(struct zd_mac *mac,
softmac_init(ieee80211_priv(netdev));
zd_chip_init(&mac->chip, netdev, intf);
housekeeping_init(mac);
INIT_WORK(&mac->set_multicast_hash_work, set_multicast_hash_handler,
mac);
INIT_WORK(&mac->set_multicast_hash_work, set_multicast_hash_handler);
return 0;
}

Expand Down Expand Up @@ -261,9 +260,10 @@ int zd_mac_set_mac_address(struct net_device *netdev, void *p)
return 0;
}

static void set_multicast_hash_handler(void *mac_ptr)
static void set_multicast_hash_handler(struct work_struct *work)
{
struct zd_mac *mac = mac_ptr;
struct zd_mac *mac = container_of(work, struct zd_mac,
set_multicast_hash_work);
struct zd_mc_hash hash;

spin_lock_irq(&mac->lock);
Expand Down

0 comments on commit 0ae8513

Please sign in to comment.