linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/17] orinoco: reorganisation
@ 2009-02-03 20:40 David Kilroy
  2009-02-03 20:40 ` [PATCH 01/17] orinoco: checkpatch cleanup David Kilroy
  2009-02-04 19:34 ` [PATCH 00/17] orinoco: reorganisation Dave
  0 siblings, 2 replies; 19+ messages in thread
From: David Kilroy @ 2009-02-03 20:40 UTC (permalink / raw)
  To: linux-wireless, orinoco-devel; +Cc: David Kilroy

This patch series reorganises the orinoco driver. The focus is on
splitting up the monolithic orinoco.c to make future changes easier.

The series has been through two RFCs on the orinoco-devel list.
As a result, checkpatch fixes prefix the core changes, and the last
two patches stop building hermes and hermes_dld as modules.

Because of patch conflicts, I've included Andrey's checkpatch cleanup
patch. However there is still a conflict with Harvey Harrison's
"wireless: replace use of __constant_{endian}" patch.


Regards,

Dave.
---

Andrey Borzenkov (1):
  orinoco: checkpatch cleanup

David Kilroy (16):
  orinoco: address leading and trailing whitespace
  orinoco: spaces in parenthesised expressions
  orinoco: remove unnecessary braces
  orinoco: keep line length below 80 characters
  orinoco: Fix interesting checkpatch errors
  orinoco: Rename orinoco.c
  orinoco: use orinoco_private instead of net_device in scan helper
  orinoco: Move scan helpers to a separate file
  orinoco: Move MIC helpers into new file
  orinoco: Move firmware handling into a separate file
  orinoco: Use accessor functions for bitrate tables
  orinoco: Add hardware function to set multicast mode
  orinoco: Move hardware functions into separate file
  orinoco: Move WEXT handlers into a separate file
  orinoco: hermes_dld does not need to be a module
  orinoco: hermes doesn't need to be a separate module

 drivers/net/wireless/orinoco/Makefile         |    3 +-
 drivers/net/wireless/orinoco/airport.c        |   37 +-
 drivers/net/wireless/orinoco/fw.c             |  340 ++
 drivers/net/wireless/orinoco/fw.h             |   16 +
 drivers/net/wireless/orinoco/hermes.c         |  120 +-
 drivers/net/wireless/orinoco/hermes.h         |   35 +-
 drivers/net/wireless/orinoco/hermes_dld.c     |   33 +-
 drivers/net/wireless/orinoco/hw.c             |  586 +++
 drivers/net/wireless/orinoco/hw.h             |   47 +
 drivers/net/wireless/orinoco/main.c           | 2654 +++++++++++
 drivers/net/wireless/orinoco/main.h           |   63 +
 drivers/net/wireless/orinoco/mic.c            |   79 +
 drivers/net/wireless/orinoco/mic.h            |   22 +
 drivers/net/wireless/orinoco/orinoco.c        | 6153 -------------------------
 drivers/net/wireless/orinoco/orinoco.h        |   17 +-
 drivers/net/wireless/orinoco/orinoco_cs.c     |   34 +-
 drivers/net/wireless/orinoco/orinoco_nortel.c |    7 +-
 drivers/net/wireless/orinoco/orinoco_pci.c    |    5 +-
 drivers/net/wireless/orinoco/orinoco_pci.h    |   12 +-
 drivers/net/wireless/orinoco/orinoco_plx.c    |    3 +-
 drivers/net/wireless/orinoco/orinoco_tmd.c    |    4 +-
 drivers/net/wireless/orinoco/scan.c           |  233 +
 drivers/net/wireless/orinoco/scan.h           |   29 +
 drivers/net/wireless/orinoco/spectrum_cs.c    |   19 +-
 drivers/net/wireless/orinoco/wext.c           | 2325 ++++++++++
 drivers/net/wireless/orinoco/wext.h           |   13 +
 26 files changed, 6562 insertions(+), 6327 deletions(-)
 create mode 100644 drivers/net/wireless/orinoco/fw.c
 create mode 100644 drivers/net/wireless/orinoco/fw.h
 create mode 100644 drivers/net/wireless/orinoco/hw.c
 create mode 100644 drivers/net/wireless/orinoco/hw.h
 create mode 100644 drivers/net/wireless/orinoco/main.c
 create mode 100644 drivers/net/wireless/orinoco/main.h
 create mode 100644 drivers/net/wireless/orinoco/mic.c
 create mode 100644 drivers/net/wireless/orinoco/mic.h
 delete mode 100644 drivers/net/wireless/orinoco/orinoco.c
 create mode 100644 drivers/net/wireless/orinoco/scan.c
 create mode 100644 drivers/net/wireless/orinoco/scan.h
 create mode 100644 drivers/net/wireless/orinoco/wext.c
 create mode 100644 drivers/net/wireless/orinoco/wext.h


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

end of thread, other threads:[~2009-02-04 19:34 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-03 20:40 [PATCH 00/17] orinoco: reorganisation David Kilroy
2009-02-03 20:40 ` [PATCH 01/17] orinoco: checkpatch cleanup David Kilroy
2009-02-03 20:40   ` [PATCH 02/17] orinoco: address leading and trailing whitespace David Kilroy
2009-02-03 20:40     ` [PATCH 03/17] orinoco: spaces in parenthesised expressions David Kilroy
2009-02-03 20:40       ` [PATCH 04/17] orinoco: remove unnecessary braces David Kilroy
2009-02-03 20:40         ` [PATCH 05/17] orinoco: keep line length below 80 characters David Kilroy
2009-02-03 20:40           ` [PATCH 06/17] orinoco: Fix interesting checkpatch errors David Kilroy
2009-02-03 20:40             ` [PATCH 07/17] orinoco: Rename orinoco.c David Kilroy
2009-02-03 20:40               ` [PATCH 08/17] orinoco: use orinoco_private instead of net_device in scan helper David Kilroy
2009-02-03 20:40                 ` [PATCH 09/17] orinoco: Move scan helpers to a separate file David Kilroy
2009-02-03 20:40                   ` [PATCH 10/17] orinoco: Move MIC helpers into new file David Kilroy
2009-02-03 20:40                     ` [PATCH 11/17] orinoco: Move firmware handling into a separate file David Kilroy
2009-02-03 20:40                       ` [PATCH 12/17] orinoco: Use accessor functions for bitrate tables David Kilroy
2009-02-03 20:40                         ` [PATCH 13/17] orinoco: Add hardware function to set multicast mode David Kilroy
2009-02-03 20:40                           ` [PATCH 14/17] orinoco: Move hardware functions into separate file David Kilroy
2009-02-03 20:40                             ` [PATCH 15/17] orinoco: Move WEXT handlers into a " David Kilroy
2009-02-03 20:40                               ` [PATCH 16/17] orinoco: hermes_dld does not need to be a module David Kilroy
2009-02-03 20:40                                 ` [PATCH 17/17] orinoco: hermes doesn't need to be a separate module David Kilroy
2009-02-04 19:34 ` [PATCH 00/17] orinoco: reorganisation Dave

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