diff options
author | John W. Linville <linville@tuxdriver.com> | 2011-04-12 16:18:44 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-04-12 16:18:44 -0400 |
commit | 252f4bf400df1712408fe83ba199a66a1b57ab1d (patch) | |
tree | e07fa00abdd55b31e22567786c78635f32c6a66c /drivers/net/wireless/rt2x00/rt2x00.h | |
parent | 6ba1037c3d871ab70e342631516dbf841c35b086 (diff) | |
parent | b37e3b6d64358604960b35e8ecbb7aed22e0926e (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next-2.6 into for-davem
Conflicts:
drivers/net/wireless/ath/ar9170/main.c
drivers/net/wireless/ath/ar9170/phy.c
drivers/net/wireless/zd1211rw/zd_rf_rf2959.c
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00.h')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00.h b/drivers/net/wireless/rt2x00/rt2x00.h index 7f10239f56a8..a2bd5feb9d5c 100644 --- a/drivers/net/wireless/rt2x00/rt2x00.h +++ b/drivers/net/wireless/rt2x00/rt2x00.h | |||
@@ -348,6 +348,11 @@ struct link { | |||
348 | * to bring the device/driver back into the desired state. | 348 | * to bring the device/driver back into the desired state. |
349 | */ | 349 | */ |
350 | struct delayed_work watchdog_work; | 350 | struct delayed_work watchdog_work; |
351 | |||
352 | /* | ||
353 | * Work structure for scheduling periodic AGC adjustments. | ||
354 | */ | ||
355 | struct delayed_work agc_work; | ||
351 | }; | 356 | }; |
352 | 357 | ||
353 | enum rt2x00_delayed_flags { | 358 | enum rt2x00_delayed_flags { |
@@ -556,6 +561,7 @@ struct rt2x00lib_ops { | |||
556 | struct link_qual *qual); | 561 | struct link_qual *qual); |
557 | void (*link_tuner) (struct rt2x00_dev *rt2x00dev, | 562 | void (*link_tuner) (struct rt2x00_dev *rt2x00dev, |
558 | struct link_qual *qual, const u32 count); | 563 | struct link_qual *qual, const u32 count); |
564 | void (*gain_calibration) (struct rt2x00_dev *rt2x00dev); | ||
559 | 565 | ||
560 | /* | 566 | /* |
561 | * Data queue handlers. | 567 | * Data queue handlers. |
@@ -674,7 +680,6 @@ enum rt2x00_flags { | |||
674 | DRIVER_SUPPORT_CONTROL_FILTER_PSPOLL, | 680 | DRIVER_SUPPORT_CONTROL_FILTER_PSPOLL, |
675 | DRIVER_SUPPORT_PRE_TBTT_INTERRUPT, | 681 | DRIVER_SUPPORT_PRE_TBTT_INTERRUPT, |
676 | DRIVER_SUPPORT_LINK_TUNING, | 682 | DRIVER_SUPPORT_LINK_TUNING, |
677 | DRIVER_SUPPORT_WATCHDOG, | ||
678 | 683 | ||
679 | /* | 684 | /* |
680 | * Driver configuration | 685 | * Driver configuration |