Dave,
Here are a few small patches intended for 2.6.29.
Two of them add USB IDs to the Ralink drivers. Some of those IDs are
already in -next, so there will be some minor conflicts.
The one from Roel Kluin avoids checking for <0 on an unsigned variable.
It seems like a very low-risk fix to a potentially hard to find
problem, so it seems worthwhile to me.
The iwlwifi fix corrects some problems with cleaning-up after
initialization errors, avoiding some potential resources leaks.
The p54 patch corrects a crash that was unveiled by applying a patch
headed to -next. The problem was their all along, so it seems work
taking now.
Please let me know if there are problems!
Thanks,
John
---
Individual patches are available here:
http://www.kernel.org/pub/linux/kernel/people/linville/wireless-2.6/
---
The following changes since commit 72e2240f181871675d3a979766330c91d48a1673:
Patrick McHardy (1):
bonding: Fix device passed into ->ndo_neigh_setup().
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git master
Christian Lamparter (1):
p54: fix race condition in memory management
Reinette Chatre (1):
iwlwifi: fix error flow in iwl*_pci_probe
Roel Kluin (1):
cfg80211: test before subtraction on unsigned
Xose Vazquez Perez (2):
rt2x00 : more devices to rt2500usb.c
rt2x00 : more devices to rt73usb.c
drivers/net/wireless/iwlwifi/iwl-agn.c | 6 +++-
drivers/net/wireless/iwlwifi/iwl3945-base.c | 17 ++++++--------
drivers/net/wireless/p54/p54common.c | 9 +++++--
drivers/net/wireless/rt2x00/rt2500usb.c | 8 ++++++
drivers/net/wireless/rt2x00/rt73usb.c | 32 ++++++++++++++++++++++++++-
net/wireless/reg.c | 3 +-
6 files changed, 58 insertions(+), 17 deletions(-)
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c
index 36bafeb..129e2d3 ...