mbox series

[RFC,v2,0/5] net: lorawan: Refine the lorawan protocol module

Message ID 20190131162101.18386-1-starnight@g.ncu.edu.tw
Headers show
Series net: lorawan: Refine the lorawan protocol module | expand

Message

Jian-Hong Pan Jan. 31, 2019, 4:21 p.m. UTC
Hello,

This series refines the commit 48e5bb6cec79 ("net: Prepare LoRaWAN
socket module") for coding style.
Besides, sperates LoRaWAN related skb definitions from
lora/lorawan_netdev.h into another header lora/lorawan/skb.h.

Thanks,
Jian-Hong Pan

Jian-Hong Pan (5):
  net: lorawan: Refine the coding style
  net: lorawan: Remove unused lrw_dev_hard_header function
  net: lorawan: Fix net device leakage
  net: lorawan: Fulfill the help text of Kconfig
  net: lorawan: Split skb definitions into another header

 include/linux/lora/lorawan/skb.h    | 33 ++++++++++++++
 include/linux/lora/lorawan_netdev.h | 25 +----------
 net/lorawan/Kconfig                 |  3 +-
 net/lorawan/socket.c                | 70 +++++++++++------------------
 4 files changed, 63 insertions(+), 68 deletions(-)
 create mode 100644 include/linux/lora/lorawan/skb.h

Comments

Andreas Färber March 12, 2019, 12:55 a.m. UTC | #1
Hi Jian-Hong,

Am 31.01.19 um 17:21 schrieb Jian-Hong Pan:
> This series refines the commit 48e5bb6cec79 ("net: Prepare LoRaWAN
> socket module") for coding style.
> Besides, sperates LoRaWAN related skb definitions from
> lora/lorawan_netdev.h into another header lora/lorawan/skb.h.

Sorry for the long delay, I've cleaned up lora-next branch now, moving
unrelated patches to other branches and squashing my cfglora patches.
As your LoRaWAN code remained untouched, they all still applied.

> Jian-Hong Pan (5):
>   net: lorawan: Refine the coding style

This one also included a return value fix, too, but oh well. :)

>   net: lorawan: Remove unused lrw_dev_hard_header function
>   net: lorawan: Fix net device leakage
>   net: lorawan: Fulfill the help text of Kconfig
>   net: lorawan: Split skb definitions into another header

Queued on lora-next branch now (for later squashing):
https://git.kernel.org/pub/scm/linux/kernel/git/afaerber/linux-lora.git/

Thanks,
Andreas