* Please pull from http://bu3sch.de/git/wireless-dev.git/ for-linville
@ 2007-04-07 15:20 Michael Buesch
0 siblings, 0 replies; 2+ messages in thread
From: Michael Buesch @ 2007-04-07 15:20 UTC (permalink / raw)
To: John Linville; +Cc: linux-wireless, bcm43xx-dev
The following changes since commit 32bfb29ad13f7451c3a09f092430b30133fc6739:
Johannes Berg:
fix debugfs compile w/o debug counters
are found in the git repository at:
http://bu3sch.de/git/wireless-dev.git/ for-linville
Mostly bugfixes.
Michael Buesch:
bcm43xx-mac80211: Fix 2050 radio init value restore for lb gain devices.
bcm43xx-mac80211: vstack: Fix slight bug and add debugging
bcm43xx-mac80211: Add more VStack debugging.
bcm43xx-mac80211: Remove old unsupported devs from the PCI list.
bcm43xx-mac80211: Update my email address.
bcm43xx-mac80211: LO setup: Registers are ORed, not overwritten.
Merge branch 'master' of git://git.kernel.org/.../linville/wireless-dev
bcm43xx-mac80211: Fix extlna flag for 2050 init
ssb: Do pci core init on attach stage.
ssb: use container_of for the dev-wrapper.
ssb: kfree devwrap (not dev) in dev register error path.
bcm43xx-mac80211: Fix hwencryption breakage for latest firmware.
Merge branch 'master' of git://git.kernel.org/.../linville/wireless-dev
bcm43xx-mac80211: Replace vstack in LO setup by a data structure.
Merge branch 'master' of git://git.kernel.org/.../linville/wireless-dev
bcm43xx-mac80211: Remove the "vstack" and its remaining uses.
drivers/net/wireless/mac80211/bcm43xx/Makefile | 16 +-
drivers/net/wireless/mac80211/bcm43xx/bcm43xx.h | 33 ++-
.../wireless/mac80211/bcm43xx/bcm43xx_debugfs.c | 2
.../net/wireless/mac80211/bcm43xx/bcm43xx_dma.c | 2
.../net/wireless/mac80211/bcm43xx/bcm43xx_leds.c | 2
drivers/net/wireless/mac80211/bcm43xx/bcm43xx_lo.c | 177 ++++++++++--------
.../net/wireless/mac80211/bcm43xx/bcm43xx_main.c | 86 +++++-----
.../net/wireless/mac80211/bcm43xx/bcm43xx_main.h | 2
.../net/wireless/mac80211/bcm43xx/bcm43xx_pcmcia.c | 2
.../net/wireless/mac80211/bcm43xx/bcm43xx_phy.c | 119 ++++++++------
.../net/wireless/mac80211/bcm43xx/bcm43xx_pio.c | 2
.../net/wireless/mac80211/bcm43xx/bcm43xx_power.c | 2
.../net/wireless/mac80211/bcm43xx/bcm43xx_power.h | 2
.../net/wireless/mac80211/bcm43xx/bcm43xx_sysfs.c | 2
.../net/wireless/mac80211/bcm43xx/bcm43xx_tables.c | 2
.../net/wireless/mac80211/bcm43xx/bcm43xx_vstack.c | 202 -----------------------
.../net/wireless/mac80211/bcm43xx/bcm43xx_vstack.h | 83 ---------
.../net/wireless/mac80211/bcm43xx/bcm43xx_xmit.c | 12 -
.../net/wireless/mac80211/bcm43xx/bcm43xx_xmit.h | 35 ++++
drivers/ssb/main.c | 14 +
include/linux/ssb/ssb.h | 4
21 files changed, 307 insertions(+), 494 deletions(-)
delete mode 100644 drivers/net/wireless/mac80211/bcm43xx/bcm43xx_vstack.c
delete mode 100644 drivers/net/wireless/mac80211/bcm43xx/bcm43xx_vstack.h
--
Greetings Michael.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Please pull from http://bu3sch.de/git/wireless-dev.git/ for-linville
@ 2007-04-23 19:58 Michael Buesch
0 siblings, 0 replies; 2+ messages in thread
From: Michael Buesch @ 2007-04-23 19:58 UTC (permalink / raw)
To: Linville, John; +Cc: linux-wireless, bcm43xx-dev
The following changes since commit 45dd8a7fad4145243dcc4391e80c73c21623ed91:
Michael Wu:
mac80211: remove ieee80211_netif_oper from mac80211.h
are found in the git repository at:
http://bu3sch.de/git/wireless-dev.git/ for-linville
Larry Finger:
bcm43xx-mac80211: Fix error in initiallizing max RSSI and max signal
bcm43xx-mac80211: Fix machine checks on PPC with rev 1 PHYs
bcm43xx-mac80211: Fix machine check on PPC for phy->rev == 1
bcm43xx-mac80211: Fix machine check on PPC for phy->rev == 1
bcm43xx-mac80211: Fix machine check on PPC for phy->rev == 1
Michael Buesch:
Merge branch 'master' of git://git.kernel.org/.../linville/wireless-dev
Merge branch 'master' of git://git.kernel.org/.../linville/wireless-dev
bcm43xx-mac80211: Use fallback rate from mac80211
ssb: Fix some error path cleanup bugs.
ssb: Code cleanup: Move printk to the specific register funcs.
bcm43xx-mac80211: Setting phy->gmode in wireless_core_reset is redundant.
bcm43xx-mac80211: Add parenthesis around bitwise ops.
bcm43xx-mac80211: Add HW-RNG support.
bcm43xx-mac80211: Workaround: Disable gmode in early PHY init for PHY rev == 1
bcm43xx-mac80211: Fix typo in agcsetup
Merge branch 'master' of git://git.kernel.org/.../linville/wireless-dev
Will Dyson:
bcm43xx-mac80211: Catch dma mapping failures.
bcm43xx-mac80211: Fix error path memory leak
bcm43xx-mac80211: Work around 30bit DMA limitation
drivers/net/wireless/mac80211/bcm43xx/Kconfig | 1
drivers/net/wireless/mac80211/bcm43xx/bcm43xx.h | 14 ++
.../net/wireless/mac80211/bcm43xx/bcm43xx_dma.c | 106 ++++++++++++++++--
.../net/wireless/mac80211/bcm43xx/bcm43xx_main.c | 61 +++++++++-
.../net/wireless/mac80211/bcm43xx/bcm43xx_phy.c | 136 ++++++++++++++---------
.../net/wireless/mac80211/bcm43xx/bcm43xx_xmit.c | 40 +++----
drivers/ssb/main.c | 35 ++---
drivers/ssb/pci.c | 7 +
8 files changed, 280 insertions(+), 120 deletions(-)
--
Greetings Michael.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-04-23 19:59 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-07 15:20 Please pull from http://bu3sch.de/git/wireless-dev.git/ for-linville Michael Buesch
-- strict thread matches above, loose matches on Subject: below --
2007-04-23 19:58 Michael Buesch
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).