All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] split code in mt76x02_util.{c,h}
@ 2018-10-01 22:34 Lorenzo Bianconi
  2018-10-08  8:30 ` Johannes Berg
  0 siblings, 1 reply; 3+ messages in thread
From: Lorenzo Bianconi @ 2018-10-01 22:34 UTC (permalink / raw)
  To: nbd; +Cc: sgruszka, linux-wireless

Move shared tx/rx code in mt76x02_txrx.c. Moreover rename
mt76x02_util.h in mt76x02.h since now it contains most
relevant mt76x02 data structures

Lorenzo Bianconi (3):
  mt76: move txrx shared routines in mt76x02_txrx.c
  mt76: rename mt76x02_util.h in mt76x02.h
  mt76x2: remove leftover function declatarions

 drivers/net/wireless/mediatek/mt76/Makefile   |   3 +-
 .../net/wireless/mediatek/mt76/mt76x0/init.c  |   3 -
 .../net/wireless/mediatek/mt76/mt76x0/mac.c   |   4 +-
 .../net/wireless/mediatek/mt76/mt76x0/main.c  |   3 +-
 .../wireless/mediatek/mt76/mt76x0/mt76x0.h    |   5 +-
 .../net/wireless/mediatek/mt76/mt76x0/pci.c   |   2 -
 .../net/wireless/mediatek/mt76/mt76x0/usb.c   |   1 -
 .../mt76/{mt76x02_util.h => mt76x02.h}        |   3 +
 .../net/wireless/mediatek/mt76/mt76x02_mac.c  |   5 +-
 .../net/wireless/mediatek/mt76/mt76x02_mmio.c |   5 +-
 .../net/wireless/mediatek/mt76/mt76x02_txrx.c | 159 ++++++++++++++++++
 .../wireless/mediatek/mt76/mt76x02_usb_core.c |   5 +-
 .../net/wireless/mediatek/mt76/mt76x02_util.c | 145 +---------------
 .../net/wireless/mediatek/mt76/mt76x2/mac.c   |   1 -
 .../net/wireless/mediatek/mt76/mt76x2/mac.h   |   3 +-
 .../net/wireless/mediatek/mt76/mt76x2/mcu.c   |   1 -
 .../wireless/mediatek/mt76/mt76x2/mt76x2.h    |  14 +-
 .../wireless/mediatek/mt76/mt76x2/mt76x2u.h   |   1 -
 .../wireless/mediatek/mt76/mt76x2/pci_core.c  |   1 -
 .../wireless/mediatek/mt76/mt76x2/pci_dfs.c   |   1 -
 .../wireless/mediatek/mt76/mt76x2/pci_dma.c   |   2 -
 .../wireless/mediatek/mt76/mt76x2/pci_init.c  |   2 -
 .../wireless/mediatek/mt76/mt76x2/pci_mac.c   |   1 -
 .../wireless/mediatek/mt76/mt76x2/pci_main.c  |   1 -
 .../wireless/mediatek/mt76/mt76x2/pci_mcu.c   |   1 -
 .../wireless/mediatek/mt76/mt76x2/pci_tx.c    |   2 -
 .../wireless/mediatek/mt76/mt76x2/usb_init.c  |   3 +-
 .../wireless/mediatek/mt76/mt76x2/usb_main.c  |   1 -
 28 files changed, 175 insertions(+), 203 deletions(-)
 rename drivers/net/wireless/mediatek/mt76/{mt76x02_util.h => mt76x02.h} (98%)
 create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x02_txrx.c

-- 
2.19.0


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

* Re: [PATCH 0/3] split code in mt76x02_util.{c,h}
  2018-10-01 22:34 [PATCH 0/3] split code in mt76x02_util.{c,h} Lorenzo Bianconi
@ 2018-10-08  8:30 ` Johannes Berg
  2018-10-08  9:16   ` Lorenzo Bianconi
  0 siblings, 1 reply; 3+ messages in thread
From: Johannes Berg @ 2018-10-08  8:30 UTC (permalink / raw)
  To: Lorenzo Bianconi; +Cc: Kalle Valo, linux-wireless

Lorenzo,

It would help - also for patchwork tracking - if you could thread your
patch series properly.

FWIW, that should be the default in git send-email, so I think you need
to either update your version or change its configuration. Unless you
weren't using --compose option and sent the 0/N manually beforehand or
something?

johannes

On Tue, 2018-10-02 at 00:34 +0200, Lorenzo Bianconi wrote:
> Move shared tx/rx code in mt76x02_txrx.c. Moreover rename
> mt76x02_util.h in mt76x02.h since now it contains most
> relevant mt76x02 data structures
> 
> Lorenzo Bianconi (3):
>   mt76: move txrx shared routines in mt76x02_txrx.c
>   mt76: rename mt76x02_util.h in mt76x02.h
>   mt76x2: remove leftover function declatarions
> 
>  drivers/net/wireless/mediatek/mt76/Makefile   |   3 +-
>  .../net/wireless/mediatek/mt76/mt76x0/init.c  |   3 -
>  .../net/wireless/mediatek/mt76/mt76x0/mac.c   |   4 +-
>  .../net/wireless/mediatek/mt76/mt76x0/main.c  |   3 +-
>  .../wireless/mediatek/mt76/mt76x0/mt76x0.h    |   5 +-
>  .../net/wireless/mediatek/mt76/mt76x0/pci.c   |   2 -
>  .../net/wireless/mediatek/mt76/mt76x0/usb.c   |   1 -
>  .../mt76/{mt76x02_util.h => mt76x02.h}        |   3 +
>  .../net/wireless/mediatek/mt76/mt76x02_mac.c  |   5 +-
>  .../net/wireless/mediatek/mt76/mt76x02_mmio.c |   5 +-
>  .../net/wireless/mediatek/mt76/mt76x02_txrx.c | 159 ++++++++++++++++++
>  .../wireless/mediatek/mt76/mt76x02_usb_core.c |   5 +-
>  .../net/wireless/mediatek/mt76/mt76x02_util.c | 145 +---------------
>  .../net/wireless/mediatek/mt76/mt76x2/mac.c   |   1 -
>  .../net/wireless/mediatek/mt76/mt76x2/mac.h   |   3 +-
>  .../net/wireless/mediatek/mt76/mt76x2/mcu.c   |   1 -
>  .../wireless/mediatek/mt76/mt76x2/mt76x2.h    |  14 +-
>  .../wireless/mediatek/mt76/mt76x2/mt76x2u.h   |   1 -
>  .../wireless/mediatek/mt76/mt76x2/pci_core.c  |   1 -
>  .../wireless/mediatek/mt76/mt76x2/pci_dfs.c   |   1 -
>  .../wireless/mediatek/mt76/mt76x2/pci_dma.c   |   2 -
>  .../wireless/mediatek/mt76/mt76x2/pci_init.c  |   2 -
>  .../wireless/mediatek/mt76/mt76x2/pci_mac.c   |   1 -
>  .../wireless/mediatek/mt76/mt76x2/pci_main.c  |   1 -
>  .../wireless/mediatek/mt76/mt76x2/pci_mcu.c   |   1 -
>  .../wireless/mediatek/mt76/mt76x2/pci_tx.c    |   2 -
>  .../wireless/mediatek/mt76/mt76x2/usb_init.c  |   3 +-
>  .../wireless/mediatek/mt76/mt76x2/usb_main.c  |   1 -
>  28 files changed, 175 insertions(+), 203 deletions(-)
>  rename drivers/net/wireless/mediatek/mt76/{mt76x02_util.h => mt76x02.h} (98%)
>  create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x02_txrx.c
> 

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

* Re: [PATCH 0/3] split code in mt76x02_util.{c,h}
  2018-10-08  8:30 ` Johannes Berg
@ 2018-10-08  9:16   ` Lorenzo Bianconi
  0 siblings, 0 replies; 3+ messages in thread
From: Lorenzo Bianconi @ 2018-10-08  9:16 UTC (permalink / raw)
  To: Johannes Berg; +Cc: Kalle Valo, linux-wireless

> Lorenzo,
> 

Hi Johannes,

> It would help - also for patchwork tracking - if you could thread your
> patch series properly.
> 
> FWIW, that should be the default in git send-email, so I think you need
> to either update your version or change its configuration. Unless you
> weren't using --compose option and sent the 0/N manually beforehand or
> something?
> 

I sent this series from a different machine so I guess it is not configured
properly, I will double check. Thx for the info.

Regards,
Lorenzo

> johannes
> 
> On Tue, 2018-10-02 at 00:34 +0200, Lorenzo Bianconi wrote:

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

end of thread, other threads:[~2018-10-08  9:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-01 22:34 [PATCH 0/3] split code in mt76x02_util.{c,h} Lorenzo Bianconi
2018-10-08  8:30 ` Johannes Berg
2018-10-08  9:16   ` Lorenzo Bianconi

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.