Commit 715caaeb authored by Larry Finger's avatar Larry Finger Committed by John W. Linville

b43legacy: Remove deprecated 'qual' from returned RX status

With the deprecation of the qual member of ieee80211_rx_status, that
calculation and an associated constant can be removed.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent c1b84ab0
...@@ -29,8 +29,6 @@ ...@@ -29,8 +29,6 @@
#define B43legacy_IRQWAIT_MAX_RETRIES 20 #define B43legacy_IRQWAIT_MAX_RETRIES 20
#define B43legacy_RX_MAX_SSI 60 /* best guess at max ssi */
/* MMIO offsets */ /* MMIO offsets */
#define B43legacy_MMIO_DMA0_REASON 0x20 #define B43legacy_MMIO_DMA0_REASON 0x20
#define B43legacy_MMIO_DMA0_IRQ_MASK 0x24 #define B43legacy_MMIO_DMA0_IRQ_MASK 0x24
......
...@@ -549,7 +549,6 @@ void b43legacy_rx(struct b43legacy_wldev *dev, ...@@ -549,7 +549,6 @@ void b43legacy_rx(struct b43legacy_wldev *dev,
(phystat0 & B43legacy_RX_PHYST0_GAINCTL), (phystat0 & B43legacy_RX_PHYST0_GAINCTL),
(phystat3 & B43legacy_RX_PHYST3_TRSTATE)); (phystat3 & B43legacy_RX_PHYST3_TRSTATE));
status.noise = dev->stats.link_noise; status.noise = dev->stats.link_noise;
status.qual = (jssi * 100) / B43legacy_RX_MAX_SSI;
/* change to support A PHY */ /* change to support A PHY */
if (phystat0 & B43legacy_RX_PHYST0_OFDM) if (phystat0 & B43legacy_RX_PHYST0_OFDM)
status.rate_idx = b43legacy_plcp_get_bitrate_idx_ofdm(plcp, false); status.rate_idx = b43legacy_plcp_get_bitrate_idx_ofdm(plcp, false);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment