Re: [PATCH v5 0/6] MIPS: ralink: add CPU clock detection and clock driver for MT7621

2021-01-17 Thread Sergio Paracuellos
Hi all, On Sun, Dec 20, 2020 at 10:37 AM Sergio Paracuellos wrote: > > This patchset ports CPU clock detection for MT7621 from OpenWrt > and adds a complete clock plan for the mt7621 SOC. > > The documentation for this SOC only talks about two registers > regarding to the clocks: > * SYSC_REG_CPL

[PATCH 0/6] wlan-ng: checkpatch.pl cleanup series

2021-01-17 Thread Johannes Czekay
Hi, This patch series cleans up all the checkpatch.pl related warnings in the wlan-ng module. I tried to resolve those issues in a sensible manner. Johannes Czekay (6): wlan-ng: clean up line ending wlan-ng: clean up spinlock_t definition wlan-ng: rename macros wlan-ng: clean up line leng

[PATCH 5/6] wlan-ng: clean up alignment

2021-01-17 Thread Johannes Czekay
This patch cleans up all the alignment related warnings from checkpatch. Signed-off-by: Johannes Czekay Co-developed-by: Nicolai Fischer Signed-off-by: Nicolai Fischer --- drivers/staging/wlan-ng/cfg80211.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/sta

[PATCH 2/6] wlan-ng: clean up spinlock_t definition

2021-01-17 Thread Johannes Czekay
This patch cleans up a "spinlock_t definition without comment" warning in hfa384x.h. Signed-off-by: Johannes Czekay Co-developed-by: Nicolai Fischer Signed-off-by: Nicolai Fischer --- drivers/staging/wlan-ng/hfa384x.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/

[PATCH 4/6] wlan-ng: clean up line length

2021-01-17 Thread Johannes Czekay
This patch cleans up all remaining line length related warnings. Signed-off-by: Johannes Czekay Co-developed-by: Nicolai Fischer Signed-off-by: Nicolai Fischer --- drivers/staging/wlan-ng/cfg80211.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/wlan-ng/c

[PATCH 3/6] wlan-ng: rename macros

2021-01-17 Thread Johannes Czekay
This patch renames some of the macros defined in "p80211metadef.h" in order to fix some of the line length related warnings from checkpatch. Since these macros are very long, fitting them within the given line length would be really hard otherwise. Signed-off-by: Johannes Czekay Co-developed-by:

[PATCH 6/6] wlan-ng: clean up reused macros

2021-01-17 Thread Johannes Czekay
This patch cleans up two "macro argument reuse" warnings by checkpatch. This should also make the code much more readable. Signed-off-by: Johannes Czekay Co-developed-by: Nicolai Fischer Signed-off-by: Nicolai Fischer --- drivers/staging/wlan-ng/p80211metastruct.h | 18 +--- drivers/stagin

[PATCH 1/6] wlan-ng: clean up line ending

2021-01-17 Thread Johannes Czekay
This patch cleans up all the "Lines should not end with a '('" warnings. Signed-off-by: Johannes Czekay Co-developed-by: Nicolai Fischer Signed-off-by: Nicolai Fischer --- drivers/staging/wlan-ng/cfg80211.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/stagi