linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/26] at76_usb: bring up to date
@ 2007-09-30 18:38 Pavel Roskin
  2007-09-30 18:38 ` [PATCH 01/26] at76_usb: Use USB_DEVICE_DATA to improve readability of the device table Pavel Roskin
                   ` (25 more replies)
  0 siblings, 26 replies; 27+ messages in thread
From: Pavel Roskin @ 2007-09-30 18:38 UTC (permalink / raw)
  To: John Linville; +Cc: linux-wireless

The following series brings at76_usb up to date with the latest
development, which is version 0.17 plus a last minute patch that adds
another device ID.

Many changes stem from user feedback for version 0.16.  Other changes
are cleanups made while trying to convert the driver to mac80211 stack.

Accepting this series will make it possible to use wireless-2.6 as the
main repository for further development.
---

Pavel Roskin (26):
      at76_usb: Add ID for at76c503a based CNETUSB611
      at76_usb: Bump version to 0.17
      at76_usb: Use ETH_P_802_2 in monitor mode
      at76_usb: Be more verbose on startup
      at76_usb: Use dev_printk() where possible
      at76_usb: Remove incorrect firmware version check
      at76_usb: Revert to network device names starting with "wlan"
      at76_usb: Add ID for Corega Wireless LAN USB-11 mini and mini2
      at76_usb: Avoid dealing with milliseconds when possible, use jiffies
      at76_usb: Move some parts from at76_usb.h to at76_usb.c
      at76_usb: Remove unneeded memset() calls
      at76_usb: Clean reserved tx area for mgmt frames like it's done for data
      at76_usb: Make it clear that management frames are sent at 1Mbps
      at76_usb: Eliminate variables used only in at76_dbg()
      at76_usb: Use string precision to avoid line termination
      at76_usb: Stop worrying about line termination in ethtool info
      at76_usb: Rename tlv to ie for readability
      at76_usb: Remove commented out code for multicast support
      at76_usb: Eliminate err(), it's USB specific
      at76_usb: Integrate at76_set_monitor_mode() into at76_dwork_restart()
      at76_usb: Fix turning radio off
      at76_usb: No need to reserve 72 bytes in set_mib_buffer - we only need 6
      at76_usb: Don't clean priv->mib_buf, just clean data explicitly if needed
      at76_usb: Avoid dubious use of '\0'
      at76_usb: Fix some device names in the device table
      at76_usb: Use USB_DEVICE_DATA to improve readability of the device table


 drivers/net/wireless/at76_usb.c |  811 ++++++++++++++++++++-------------------
 drivers/net/wireless/at76_usb.h |   61 ---
 2 files changed, 416 insertions(+), 456 deletions(-)

-- 
Regards,
Pavel Roskin

^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2007-09-30 18:41 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-30 18:38 [PATCH 00/26] at76_usb: bring up to date Pavel Roskin
2007-09-30 18:38 ` [PATCH 01/26] at76_usb: Use USB_DEVICE_DATA to improve readability of the device table Pavel Roskin
2007-09-30 18:38 ` [PATCH 02/26] at76_usb: Fix some device names in " Pavel Roskin
2007-09-30 18:38 ` [PATCH 03/26] at76_usb: Avoid dubious use of '\0' Pavel Roskin
2007-09-30 18:39 ` [PATCH 04/26] at76_usb: Don't clean priv->mib_buf, just clean data explicitly if needed Pavel Roskin
2007-09-30 18:39 ` [PATCH 05/26] at76_usb: No need to reserve 72 bytes in set_mib_buffer - we only need 6 Pavel Roskin
2007-09-30 18:39 ` [PATCH 06/26] at76_usb: Fix turning radio off Pavel Roskin
2007-09-30 18:39 ` [PATCH 07/26] at76_usb: Integrate at76_set_monitor_mode() into at76_dwork_restart() Pavel Roskin
2007-09-30 18:39 ` [PATCH 08/26] at76_usb: Eliminate err(), it's USB specific Pavel Roskin
2007-09-30 18:39 ` [PATCH 09/26] at76_usb: Remove commented out code for multicast support Pavel Roskin
2007-09-30 18:39 ` [PATCH 10/26] at76_usb: Rename tlv to ie for readability Pavel Roskin
2007-09-30 18:39 ` [PATCH 11/26] at76_usb: Stop worrying about line termination in ethtool info Pavel Roskin
2007-09-30 18:39 ` [PATCH 12/26] at76_usb: Use string precision to avoid line termination Pavel Roskin
2007-09-30 18:40 ` [PATCH 13/26] at76_usb: Eliminate variables used only in at76_dbg() Pavel Roskin
2007-09-30 18:40 ` [PATCH 14/26] at76_usb: Make it clear that management frames are sent at 1Mbps Pavel Roskin
2007-09-30 18:40 ` [PATCH 15/26] at76_usb: Clean reserved tx area for mgmt frames like it's done for data Pavel Roskin
2007-09-30 18:40 ` [PATCH 16/26] at76_usb: Remove unneeded memset() calls Pavel Roskin
2007-09-30 18:40 ` [PATCH 17/26] at76_usb: Move some parts from at76_usb.h to at76_usb.c Pavel Roskin
2007-09-30 18:40 ` [PATCH 18/26] at76_usb: Avoid dealing with milliseconds when possible, use jiffies Pavel Roskin
2007-09-30 18:40 ` [PATCH 19/26] at76_usb: Add ID for Corega Wireless LAN USB-11 mini and mini2 Pavel Roskin
2007-09-30 18:40 ` [PATCH 20/26] at76_usb: Revert to network device names starting with "wlan" Pavel Roskin
2007-09-30 18:40 ` [PATCH 21/26] at76_usb: Remove incorrect firmware version check Pavel Roskin
2007-09-30 18:40 ` [PATCH 22/26] at76_usb: Use dev_printk() where possible Pavel Roskin
2007-09-30 18:41 ` [PATCH 23/26] at76_usb: Be more verbose on startup Pavel Roskin
2007-09-30 18:41 ` [PATCH 24/26] at76_usb: Use ETH_P_802_2 in monitor mode Pavel Roskin
2007-09-30 18:41 ` [PATCH 25/26] at76_usb: Bump version to 0.17 Pavel Roskin
2007-09-30 18:41 ` [PATCH 26/26] at76_usb: Add ID for at76c503a based CNETUSB611 Pavel Roskin

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).