netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next v2 00/19] bna: clean-up
@ 2015-06-11 13:52 Ivan Vecera
  2015-06-11 13:52 ` [PATCH net-next v2 01/19] bna: use ether_addr_copy instead of memcpy Ivan Vecera
                   ` (19 more replies)
  0 siblings, 20 replies; 23+ messages in thread
From: Ivan Vecera @ 2015-06-11 13:52 UTC (permalink / raw)
  To: netdev; +Cc: rasesh.mody, joe

The patches clean the bna driver.

v2: changes & comments requested by Joe

Ivan Vecera (19):
  bna: use ether_addr_copy instead of memcpy
  bna: get rid of mac_t
  bna: replace pragma(pack) with attribute __packed
  bna: get rid of duplicate and unused macros
  bna: use BIT(x) instead of (1 << x)
  bna: remove unused cbfn parameter
  bna: remove pause_cbfn from struct bna_enet
  bna: remove oper_state_cbfn from struct bna_rxf
  bna: remove prio_change_cbfn oper_state_cbfn from struct bna_tx
  bna: remove RXF_E_PAUSE and RXF_E_RESUME events
  bna: remove paused from bna_rx_config and flags from bna_rxf
  bna: remove TX_E_PRIO_CHANGE event and BNA_TX_F_PRIO_CHANGED flag
  bna: correct comparisons/assignments to bool
  bna: use memdup_user to copy userspace buffers
  bna: remove useless pointer assignment
  bna: get rid of private macros for manipulation with lists
  bna: use list_for_each_entry where appropriate
  bna: fix timeout API argument type
  bna: use netdev_* and dev_* instead of printk and pr_*

 drivers/net/ethernet/brocade/bna/bfa_cee.c         |   1 -
 drivers/net/ethernet/brocade/bna/bfa_cs.h          |  14 -
 drivers/net/ethernet/brocade/bna/bfa_defs.h        |  11 +-
 drivers/net/ethernet/brocade/bna/bfa_defs_cna.h    |  16 +-
 .../net/ethernet/brocade/bna/bfa_defs_mfg_comm.h   |   8 +-
 drivers/net/ethernet/brocade/bna/bfa_ioc.c         |  61 +-
 drivers/net/ethernet/brocade/bna/bfa_ioc.h         |  23 +-
 drivers/net/ethernet/brocade/bna/bfa_ioc_ct.c      |   2 +-
 drivers/net/ethernet/brocade/bna/bfa_msgq.c        |  10 +-
 drivers/net/ethernet/brocade/bna/bfi.h             |  84 ++-
 drivers/net/ethernet/brocade/bna/bfi_cna.h         |  30 +-
 drivers/net/ethernet/brocade/bna/bfi_enet.h        | 176 +++---
 drivers/net/ethernet/brocade/bna/bna.h             | 186 +-----
 drivers/net/ethernet/brocade/bna/bna_enet.c        | 101 +---
 drivers/net/ethernet/brocade/bna/bna_hw_defs.h     |  70 +--
 drivers/net/ethernet/brocade/bna/bna_tx_rx.c       | 665 +++++----------------
 drivers/net/ethernet/brocade/bna/bna_types.h       |  19 -
 drivers/net/ethernet/brocade/bna/bnad.c            | 101 ++--
 drivers/net/ethernet/brocade/bna/bnad.h            |   2 +-
 drivers/net/ethernet/brocade/bna/bnad_debugfs.c    |  61 +-
 drivers/net/ethernet/brocade/bna/bnad_ethtool.c    |  15 +-
 drivers/net/ethernet/brocade/bna/cna.h             |  62 --
 drivers/net/ethernet/brocade/bna/cna_fwimg.c       |   2 +-
 23 files changed, 491 insertions(+), 1229 deletions(-)

-- 
2.3.6

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

end of thread, other threads:[~2015-06-16  8:43 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-11 13:52 [PATCH net-next v2 00/19] bna: clean-up Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 01/19] bna: use ether_addr_copy instead of memcpy Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 02/19] bna: get rid of mac_t Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 03/19] bna: replace pragma(pack) with attribute __packed Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 04/19] bna: get rid of duplicate and unused macros Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 05/19] bna: use BIT(x) instead of (1 << x) Ivan Vecera
2015-06-12 13:30   ` David Laight
2015-06-16  8:43     ` Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 06/19] bna: remove unused cbfn parameter Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 07/19] bna: remove pause_cbfn from struct bna_enet Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 08/19] bna: remove oper_state_cbfn from struct bna_rxf Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 09/19] bna: remove prio_change_cbfn oper_state_cbfn from struct bna_tx Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 10/19] bna: remove RXF_E_PAUSE and RXF_E_RESUME events Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 11/19] bna: remove paused from bna_rx_config and flags from bna_rxf Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 12/19] bna: remove TX_E_PRIO_CHANGE event and BNA_TX_F_PRIO_CHANGED flag Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 13/19] bna: correct comparisons/assignments to bool Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 14/19] bna: use memdup_user to copy userspace buffers Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 15/19] bna: remove useless pointer assignment Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 16/19] bna: get rid of private macros for manipulation with lists Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 17/19] bna: use list_for_each_entry where appropriate Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 18/19] bna: fix timeout API argument type Ivan Vecera
2015-06-11 13:52 ` [PATCH net-next v2 19/19] bna: use netdev_* and dev_* instead of printk and pr_* Ivan Vecera
2015-06-11 22:57 ` [PATCH net-next v2 00/19] bna: clean-up David Miller

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