diff options
Diffstat (limited to 'drivers/net/wireless/b43/b43.h')
-rw-r--r-- | drivers/net/wireless/b43/b43.h | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/drivers/net/wireless/b43/b43.h b/drivers/net/wireless/b43/b43.h index 660716214d4..fe3bf949199 100644 --- a/drivers/net/wireless/b43/b43.h +++ b/drivers/net/wireless/b43/b43.h | |||
@@ -26,8 +26,6 @@ | |||
26 | # define B43_DEBUG 0 | 26 | # define B43_DEBUG 0 |
27 | #endif | 27 | #endif |
28 | 28 | ||
29 | #define B43_RX_MAX_SSI 60 | ||
30 | |||
31 | /* MMIO offsets */ | 29 | /* MMIO offsets */ |
32 | #define B43_MMIO_DMA0_REASON 0x20 | 30 | #define B43_MMIO_DMA0_REASON 0x20 |
33 | #define B43_MMIO_DMA0_IRQ_MASK 0x24 | 31 | #define B43_MMIO_DMA0_IRQ_MASK 0x24 |
@@ -749,12 +747,6 @@ struct b43_wldev { | |||
749 | #endif | 747 | #endif |
750 | }; | 748 | }; |
751 | 749 | ||
752 | /* | ||
753 | * Include goes here to avoid a dependency problem. | ||
754 | * A better fix would be to integrate xmit.h into b43.h. | ||
755 | */ | ||
756 | #include "xmit.h" | ||
757 | |||
758 | /* Data structure for the WLAN parts (802.11 cores) of the b43 chip. */ | 750 | /* Data structure for the WLAN parts (802.11 cores) of the b43 chip. */ |
759 | struct b43_wl { | 751 | struct b43_wl { |
760 | /* Pointer to the active wireless device on this chip */ | 752 | /* Pointer to the active wireless device on this chip */ |
@@ -830,13 +822,9 @@ struct b43_wl { | |||
830 | struct b43_leds leds; | 822 | struct b43_leds leds; |
831 | 823 | ||
832 | #ifdef CONFIG_B43_PIO | 824 | #ifdef CONFIG_B43_PIO |
833 | /* | 825 | /* Kmalloc'ed scratch space for PIO TX/RX. Protected by wl->mutex. */ |
834 | * RX/TX header/tail buffers used by the frame transmit functions. | 826 | u8 pio_scratchspace[110] __attribute__((__aligned__(8))); |
835 | */ | 827 | u8 pio_tailspace[4] __attribute__((__aligned__(8))); |
836 | struct b43_rxhdr_fw4 rxhdr; | ||
837 | struct b43_txhdr txhdr; | ||
838 | u8 rx_tail[4]; | ||
839 | u8 tx_tail[4]; | ||
840 | #endif /* CONFIG_B43_PIO */ | 828 | #endif /* CONFIG_B43_PIO */ |
841 | }; | 829 | }; |
842 | 830 | ||