All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/17] staging: vt6656: conversion to mac80211
@ 2014-06-25 20:14 Malcolm Priestley
  2014-06-25 20:14 ` [PATCH 01/17] staging: vt6656: mac80211 conversion: create rx function Malcolm Priestley
                   ` (17 more replies)
  0 siblings, 18 replies; 21+ messages in thread
From: Malcolm Priestley @ 2014-06-25 20:14 UTC (permalink / raw)
  To: gregkh; +Cc: linux-wireless, Malcolm Priestley

The patches in this series convert the driver to mac80211.

As well as infrastructure mode the driver now operates in
IBSS and access point modes.

Host access point is now working with hostapd in nl80211 mode.

These patches creates huge amount of dead code.

The driver nolonger supports WEP 256 mode due to no support in
mac80211. The vendors code had removed support for this in their
last version anyway.

Malcolm Priestley (17):
  staging: vt6656: mac80211 conversion: create rx function.
  staging: vt6656: mac80211 conversion: Create tx functions
  staging: vt6656: mac80211 conversion: add key functions
  staging: vt6656: mac80211 conversion: main_usb add functions and
    change usb_driver functions
  staging: vt6656: mac80211 conversion: add channel bands
  staging: vt6656: mac80211 conversion: add vnt_init to bScheduleCommand
  staging: vt6656: mac80211 conversion: vnt_update_ifs change basic
    rates
  staging: vt6656: mac80211 conversion: enable power saving
  staging: vt6656: mac80211 conversion: vRunCommand change beacon
  staging: vt6656: mac80211 conversion: change vnt_next_tbtt_wakeup
  staging: vt6656: mac80211 conversion: int.c changes
  staging: vt6656: mac80211 conversion: vRunCommand channel changes
  staging: vt6656: mac80211 conversion: move data rates to device.h
  staging: vt6656: mac80211 conversion: change vnt_rf_set_txpower
  staging: vt6656: vnt_mac_set_keyentry remove byLocalID check
  staging: vt6656: mac80211 conversion: device_alloc_bufs use dev_err
  staging: vt6656: mac80211 conversion: rxtx implement power save poll

 drivers/staging/vt6656/Kconfig    |   2 +-
 drivers/staging/vt6656/card.c     |  22 +-
 drivers/staging/vt6656/channel.c  | 139 +++++++++
 drivers/staging/vt6656/channel.h  |   2 +
 drivers/staging/vt6656/datarate.h |  14 -
 drivers/staging/vt6656/device.h   |  31 +-
 drivers/staging/vt6656/dpc.c      | 137 +++++++-
 drivers/staging/vt6656/dpc.h      |   3 +
 drivers/staging/vt6656/int.c      |  49 +--
 drivers/staging/vt6656/key.c      | 143 +++++++++
 drivers/staging/vt6656/key.h      |  13 +
 drivers/staging/vt6656/mac.c      |   4 -
 drivers/staging/vt6656/main_usb.c | 640 +++++++++++++++++++++++++++++++-------
 drivers/staging/vt6656/power.c    |  47 +--
 drivers/staging/vt6656/rf.c       |  23 +-
 drivers/staging/vt6656/rxtx.c     | 462 +++++++++++++++++++++++++--
 drivers/staging/vt6656/rxtx.h     |   7 +-
 drivers/staging/vt6656/usbpipe.c  |  32 +-
 drivers/staging/vt6656/wcmd.c     |  34 +-
 drivers/staging/vt6656/wcmd.h     |   2 +
 20 files changed, 1506 insertions(+), 300 deletions(-)

-- 
1.9.1


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

end of thread, other threads:[~2014-06-27 18:50 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-25 20:14 [PATCH 00/17] staging: vt6656: conversion to mac80211 Malcolm Priestley
2014-06-25 20:14 ` [PATCH 01/17] staging: vt6656: mac80211 conversion: create rx function Malcolm Priestley
2014-06-25 20:14 ` [PATCH 02/17] staging: vt6656: mac80211 conversion: Create tx functions Malcolm Priestley
2014-06-25 20:14 ` [PATCH 03/17] staging: vt6656: mac80211 conversion: add key functions Malcolm Priestley
2014-06-25 20:14 ` [PATCH 04/17] staging: vt6656: mac80211 conversion: main_usb add functions and change usb_driver functions Malcolm Priestley
2014-06-25 20:14 ` [PATCH 05/17] staging: vt6656: mac80211 conversion: add channel bands Malcolm Priestley
2014-06-25 20:14 ` [PATCH 06/17] staging: vt6656: mac80211 conversion: add vnt_init to bScheduleCommand Malcolm Priestley
2014-06-25 20:14 ` [PATCH 07/17] staging: vt6656: mac80211 conversion: vnt_update_ifs change basic rates Malcolm Priestley
2014-06-25 20:14 ` [PATCH 08/17] staging: vt6656: mac80211 conversion: enable power saving Malcolm Priestley
2014-06-25 20:14 ` [PATCH 09/17] staging: vt6656: mac80211 conversion: vRunCommand change beacon Malcolm Priestley
2014-06-25 20:14 ` [PATCH 10/17] staging: vt6656: mac80211 conversion: change vnt_next_tbtt_wakeup Malcolm Priestley
2014-06-25 20:14 ` [PATCH 11/17] staging: vt6656: mac80211 conversion: int.c changes Malcolm Priestley
2014-06-25 20:14 ` [PATCH 12/17] staging: vt6656: mac80211 conversion: vRunCommand channel changes Malcolm Priestley
2014-06-25 20:14 ` [PATCH 13/17] staging: vt6656: mac80211 conversion: move data rates to device.h Malcolm Priestley
2014-06-25 20:14 ` [PATCH 14/17] staging: vt6656: mac80211 conversion: change vnt_rf_set_txpower Malcolm Priestley
2014-06-25 20:14 ` [PATCH 15/17] staging: vt6656: vnt_mac_set_keyentry remove byLocalID check Malcolm Priestley
2014-06-25 20:14 ` [PATCH 16/17] staging: vt6656: mac80211 conversion: device_alloc_bufs use dev_err Malcolm Priestley
2014-06-25 20:14 ` [PATCH 17/17] staging: vt6656: mac80211 conversion: rxtx implement power save poll Malcolm Priestley
2014-06-26  6:29 ` [PATCH 00/17] staging: vt6656: conversion to mac80211 Johannes Berg
2014-06-27  0:20   ` Greg KH
2014-06-27 18:50     ` Malcolm Priestley

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.