Skip to content

Commit

Permalink
[PATCH] zd1211rw: fix build-break caused by association race fix
Browse files Browse the repository at this point in the history
The break was caused by 7c28ad2.

Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
John W. Linville committed Oct 17, 2006
1 parent 6684e59 commit 41072a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/zd1211rw/zd_mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1099,7 +1099,7 @@ static void link_led_handler(void *p)
int r;

spin_lock_irq(&mac->lock);
is_associated = sm->associated != 0;
is_associated = sm->associnfo.associated != 0;
spin_unlock_irq(&mac->lock);

r = zd_chip_control_leds(chip,
Expand Down

0 comments on commit 41072a1

Please sign in to comment.