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

Commit 7162f669 authored by David S. Miller's avatar David S. Miller
Browse files

Merge branch 'for-davem' of...

parents 250e061e 78ab9527
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -65,7 +65,6 @@
    </abstract>
  </setinfo>
  <book id="cfg80211-developers-guide">
!Ainclude/net/cfg80211.h
    <bookinfo>
      <title>The cfg80211 subsystem</title>

+4 −4
Original line number Diff line number Diff line
@@ -4304,13 +4304,12 @@ F: Documentation/filesystems/dlmfs.txt
F:	fs/ocfs2/

ORINOCO DRIVER
M:	Pavel Roskin <proski@gnu.org>
M:	David Gibson <hermes@gibson.dropbear.id.au>
L:	linux-wireless@vger.kernel.org
L:	orinoco-users@lists.sourceforge.net
L:	orinoco-devel@lists.sourceforge.net
W:	http://linuxwireless.org/en/users/Drivers/orinoco
W:	http://www.nongnu.org/orinoco/
S:	Maintained
S:	Orphan
F:	drivers/net/wireless/orinoco/

OSD LIBRARY and FILESYSTEM
@@ -6376,7 +6375,7 @@ S: Maintained
F:	drivers/input/misc/wistron_btns.c

WL1251 WIRELESS DRIVER
M:	Kalle Valo <kalle.valo@iki.fi>
M:	Kalle Valo <kvalo@adurom.com>
L:	linux-wireless@vger.kernel.org
W:	http://wireless.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
@@ -6391,6 +6390,7 @@ W: http://wireless.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
S:	Maintained
F:	drivers/net/wireless/wl12xx/wl1271*
F:	include/linux/spi/wl12xx.h

WL3501 WIRELESS PCMCIA CARD DRIVER
M:	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
+1 −0
Original line number Diff line number Diff line
@@ -119,6 +119,7 @@ struct ath_common {

	u32 keymax;
	DECLARE_BITMAP(keymap, ATH_KEYMAX);
	DECLARE_BITMAP(tkip_keymap, ATH_KEYMAX);
	u8 splitmic;

	struct ath_regulatory regulatory;
+2 −2
Original line number Diff line number Diff line
@@ -700,10 +700,10 @@ ath5k_pci_probe(struct pci_dev *pdev,
	return 0;
err_ah:
	ath5k_hw_detach(sc->ah);
err_irq:
	free_irq(pdev->irq, sc);
err_free_ah:
	kfree(sc->ah);
err_irq:
	free_irq(pdev->irq, sc);
err_free:
	ieee80211_free_hw(hw);
err_map:
+3 −2
Original line number Diff line number Diff line
@@ -312,6 +312,7 @@ static const struct {
	{ ATH5K_DEBUG_DUMP_TX,	"dumptx",	"print transmit skb content" },
	{ ATH5K_DEBUG_DUMPBANDS, "dumpbands",	"dump bands" },
	{ ATH5K_DEBUG_ANI,	"ani",		"adaptive noise immunity" },
	{ ATH5K_DEBUG_DESC,	"desc",		"descriptor chains" },
	{ ATH5K_DEBUG_ANY,	"all",		"show all debug levels" },
};

@@ -955,7 +956,7 @@ ath5k_debug_printrxbuffs(struct ath5k_softc *sc, struct ath5k_hw *ah)
	struct ath5k_rx_status rs = {};
	int status;

	if (likely(!(sc->debug.level & ATH5K_DEBUG_RESET)))
	if (likely(!(sc->debug.level & ATH5K_DEBUG_DESC)))
		return;

	printk(KERN_DEBUG "rxdp %x, rxlink %p\n",
@@ -997,7 +998,7 @@ ath5k_debug_printtxbuf(struct ath5k_softc *sc, struct ath5k_buf *bf)
	struct ath5k_tx_status ts = {};
	int done;

	if (likely(!(sc->debug.level & ATH5K_DEBUG_RESET)))
	if (likely(!(sc->debug.level & ATH5K_DEBUG_DESC)))
		return;

	done = sc->ah->ah_proc_tx_desc(sc->ah, bf->desc, &ts);
Loading