Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 874239f5 authored by John W. Linville's avatar John W. Linville
Browse files
parents b0302aba b49ba04a
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -31,6 +31,12 @@ config B43_BCMA
	depends on B43 && BCMA
	default y

config B43_BCMA_EXTRA
	bool "Hardware support that overlaps with the brcmsmac driver"
	depends on B43_BCMA
	default n if BRCMSMAC || BRCMSMAC_MODULE
	default	y

config B43_SSB
	bool
	depends on B43 && SSB
+2 −0
Original line number Diff line number Diff line
@@ -116,8 +116,10 @@ MODULE_PARM_DESC(pio, "Use PIO accesses by default: 0=DMA, 1=PIO");
#ifdef CONFIG_B43_BCMA
static const struct bcma_device_id b43_bcma_tbl[] = {
	BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x11, BCMA_ANY_CLASS),
#ifdef CONFIG_B43_BCMA_EXTRA
	BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x17, BCMA_ANY_CLASS),
	BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x18, BCMA_ANY_CLASS),
#endif
	BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 0x1D, BCMA_ANY_CLASS),
	BCMA_CORETABLE_END
};
+9 −1
Original line number Diff line number Diff line
@@ -7967,13 +7967,21 @@ int brcms_c_get_curband(struct brcms_c_info *wlc)

void brcms_c_wait_for_tx_completion(struct brcms_c_info *wlc, bool drop)
{
	int timeout = 20;

	/* flush packet queue when requested */
	if (drop)
		brcmu_pktq_flush(&wlc->pkt_queue->q, false, NULL, NULL);

	/* wait for queue and DMA fifos to run dry */
	while (!pktq_empty(&wlc->pkt_queue->q) || brcms_txpktpendtot(wlc) > 0)
	while (!pktq_empty(&wlc->pkt_queue->q) || brcms_txpktpendtot(wlc) > 0) {
		brcms_msleep(wlc->wl, 1);

		if (--timeout == 0)
			break;
	}

	WARN_ON_ONCE(timeout == 0);
}

void brcms_c_set_beacon_listen_interval(struct brcms_c_info *wlc, u8 interval)
+2 −2
Original line number Diff line number Diff line
@@ -972,11 +972,11 @@ void iwl_irq_tasklet(struct iwl_trans *trans)
	}
#endif

	spin_unlock_irqrestore(&trans->shrd->lock, flags);

	/* saved interrupt in inta variable now we can reset trans_pcie->inta */
	trans_pcie->inta = 0;

	spin_unlock_irqrestore(&trans->shrd->lock, flags);

	/* Now service all interrupt bits discovered above. */
	if (inta & CSR_INT_BIT_HW_ERR) {
		IWL_ERR(trans, "Hardware error detected.  Restarting.\n");
+4 −3
Original line number Diff line number Diff line
@@ -227,7 +227,7 @@ KEY_OPS(key);
void ieee80211_debugfs_key_add(struct ieee80211_key *key)
{
	static int keycount;
	char buf[50];
	char buf[100];
	struct sta_info *sta;

	if (!key->local->debugfs.keys)
@@ -244,7 +244,8 @@ void ieee80211_debugfs_key_add(struct ieee80211_key *key)

	sta = key->sta;
	if (sta) {
		sprintf(buf, "../../stations/%pM", sta->sta.addr);
		sprintf(buf, "../../netdev:%s/stations/%pM",
			sta->sdata->name, sta->sta.addr);
		key->debugfs.stalink =
			debugfs_create_symlink("station", key->debugfs.dir, buf);
	}
Loading