diff options
Diffstat (limited to 'drivers/net/wireless/bcm43xx/bcm43xx.h')
-rw-r--r-- | drivers/net/wireless/bcm43xx/bcm43xx.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/drivers/net/wireless/bcm43xx/bcm43xx.h b/drivers/net/wireless/bcm43xx/bcm43xx.h index 1fca1f9c48fe..57fcaafcf7dd 100644 --- a/drivers/net/wireless/bcm43xx/bcm43xx.h +++ b/drivers/net/wireless/bcm43xx/bcm43xx.h | |||
@@ -526,8 +526,16 @@ struct bcm43xx_radioinfo { | |||
526 | 526 | ||
527 | /* Current Interference Mitigation mode */ | 527 | /* Current Interference Mitigation mode */ |
528 | int interfmode; | 528 | int interfmode; |
529 | /* Stack of saved values from the Interference Mitigation code */ | 529 | /* Stack of saved values from the Interference Mitigation code. |
530 | u16 interfstack[20]; | 530 | * Each value in the stack is layed out as follows: |
531 | * bit 0-11: offset | ||
532 | * bit 12-15: register ID | ||
533 | * bit 16-32: value | ||
534 | * register ID is: 0x1 PHY, 0x2 Radio, 0x3 ILT | ||
535 | */ | ||
536 | #define BCM43xx_INTERFSTACK_SIZE 26 | ||
537 | u32 interfstack[BCM43xx_INTERFSTACK_SIZE]; | ||
538 | |||
531 | /* Saved values from the NRSSI Slope calculation */ | 539 | /* Saved values from the NRSSI Slope calculation */ |
532 | s16 nrssi[2]; | 540 | s16 nrssi[2]; |
533 | s32 nrssislope; | 541 | s32 nrssislope; |