All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/26] et131x cleanups - phase 1
@ 2009-08-25 14:57 Alan Cox
  2009-08-25 14:57 ` [PATCH 01/26] et1310: kill pAdapter in favour of a sane name Alan Cox
                   ` (25 more replies)
  0 siblings, 26 replies; 28+ messages in thread
From: Alan Cox @ 2009-08-25 14:57 UTC (permalink / raw)
  To: greg, netdev

Begin turning the et131x driver into something presentable. The only hairy
bit is the DMA10 stuff. Has all been lightly tested.

---

Alan Cox (26):
      et131x: clean up MP_FLAG macros
      et131x: clean up DMA10/DMA4 types
      et131x: clean up PM_CSR_t
      et131x: kill the Q_ADDR struct
      et131x: quick tidy of the debug code
      et131x: clean up MMC_SRAM_
      et131x: sort out the mmc enable routine
      et131x: eeprom remove features
      et131x: remove unused PCI identifiers
      et131x: continue pruning unused fields
      et131x: de-hungarianise a bit
      et131x: fold the diet config into the other code
      et131x: config is already zeroed
      et131x: attack the config stuff
      et131x: clean up constant rx/tx registry fields
      et131x: eliminate write only registry fields
      et131x: Eliminate RegistryDMA Cache
      et131x: CSRAddress to regs
      et131x: Take a kref for the PCI pointer we cache
      et131x: kill copied PCI fields
      et131x: MPSend macros
      et131x: kill refcount
      et131x: kill unused RCV_REF macros
      et131x: power state
      et131x: spinlocks
      et1310: kill pAdapter in favour of a sane name


 drivers/staging/et131x/Makefile             |    1 
 drivers/staging/et131x/et1310_address_map.h |  311 ++++----------
 drivers/staging/et131x/et1310_eeprom.c      |  190 ++++-----
 drivers/staging/et131x/et1310_eeprom.h      |   16 -
 drivers/staging/et131x/et1310_jagcore.c     |   73 +--
 drivers/staging/et131x/et1310_jagcore.h     |   19 -
 drivers/staging/et131x/et1310_mac.c         |  228 +++++------
 drivers/staging/et131x/et1310_phy.c         |  524 ++++++++++++------------
 drivers/staging/et131x/et1310_phy.h         |   37 --
 drivers/staging/et131x/et1310_pm.c          |   65 +--
 drivers/staging/et131x/et1310_pm.h          |   40 --
 drivers/staging/et131x/et1310_rx.c          |  365 ++++++++---------
 drivers/staging/et131x/et1310_rx.h          |    4 
 drivers/staging/et131x/et1310_tx.c          |  580 +++++++++++++--------------
 drivers/staging/et131x/et1310_tx.h          |    6 
 drivers/staging/et131x/et131x_adapter.h     |   74 ---
 drivers/staging/et131x/et131x_config.c      |  323 ---------------
 drivers/staging/et131x/et131x_debug.c       |  107 ++---
 drivers/staging/et131x/et131x_defs.h        |   16 -
 drivers/staging/et131x/et131x_initpci.c     |  300 ++++++++------
 drivers/staging/et131x/et131x_isr.c         |   60 +--
 drivers/staging/et131x/et131x_netdev.c      |   72 ++-

 delete mode 100644 drivers/staging/et131x/et131x_config.c


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

end of thread, other threads:[~2009-08-26  5:51 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-25 14:57 [PATCH 00/26] et131x cleanups - phase 1 Alan Cox
2009-08-25 14:57 ` [PATCH 01/26] et1310: kill pAdapter in favour of a sane name Alan Cox
2009-08-26  5:49   ` Greg KH
2009-08-25 14:57 ` [PATCH 02/26] et131x: spinlocks Alan Cox
2009-08-25 14:57 ` [PATCH 03/26] et131x: power state Alan Cox
2009-08-25 14:57 ` [PATCH 04/26] et131x: kill unused RCV_REF macros Alan Cox
2009-08-25 14:58 ` [PATCH 05/26] et131x: kill refcount Alan Cox
2009-08-25 14:58 ` [PATCH 06/26] et131x: MPSend macros Alan Cox
2009-08-25 14:58 ` [PATCH 07/26] et131x: kill copied PCI fields Alan Cox
2009-08-25 14:58 ` [PATCH 08/26] et131x: Take a kref for the PCI pointer we cache Alan Cox
2009-08-25 14:58 ` [PATCH 09/26] et131x: CSRAddress to regs Alan Cox
2009-08-25 14:59 ` [PATCH 10/26] et131x: Eliminate RegistryDMA Cache Alan Cox
2009-08-25 14:59 ` [PATCH 11/26] et131x: eliminate write only registry fields Alan Cox
2009-08-25 14:59 ` [PATCH 12/26] et131x: clean up constant rx/tx " Alan Cox
2009-08-25 14:59 ` [PATCH 13/26] et131x: attack the config stuff Alan Cox
2009-08-25 14:59 ` [PATCH 14/26] et131x: config is already zeroed Alan Cox
2009-08-25 14:59 ` [PATCH 15/26] et131x: fold the diet config into the other code Alan Cox
2009-08-25 15:00 ` [PATCH 16/26] et131x: de-hungarianise a bit Alan Cox
2009-08-25 15:00 ` [PATCH 17/26] et131x: continue pruning unused fields Alan Cox
2009-08-25 15:00 ` [PATCH 18/26] et131x: remove unused PCI identifiers Alan Cox
2009-08-25 15:00 ` [PATCH 19/26] et131x: eeprom remove features Alan Cox
2009-08-25 15:00 ` [PATCH 20/26] et131x: sort out the mmc enable routine Alan Cox
2009-08-25 15:00 ` [PATCH 21/26] et131x: clean up MMC_SRAM_ Alan Cox
2009-08-25 15:01 ` [PATCH 22/26] et131x: quick tidy of the debug code Alan Cox
2009-08-25 15:01 ` [PATCH 23/26] et131x: kill the Q_ADDR struct Alan Cox
2009-08-25 15:01 ` [PATCH 24/26] et131x: clean up PM_CSR_t Alan Cox
2009-08-25 15:01 ` [PATCH 25/26] et131x: clean up DMA10/DMA4 types Alan Cox
2009-08-25 15:01 ` [PATCH 26/26] et131x: clean up MP_FLAG macros Alan Cox

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.