[PATCH v4] staging: qlge: emit debug and dump at same level

2020-02-24 Thread Kaaira Gupta
Simplify code in ql_mpi_core_to_log() by calling print_hex_dump() instead of existing functions so that the debug and dump are emitted at the same KERN_ Signed-off-by: Kaaira Gupta --- changes since v1: make code of ql_mpi_core_to_log() simpler. changes since v2: directly call the function inste

Re: [PATCH] docs: dt: fix several broken doc references

2020-02-24 Thread Miquel Raynal
Hi Mauro, Mauro Carvalho Chehab wrote on Sun, 23 Feb 2020 09:59:53 +0100: > There are several DT doc references that require manual fixes. > I found 3 cases fixed on this patch: > > - directory named "binding/" instead of "bindings/"; > - .txt to .yaml renames; > - file rename

Re: [PATCH] docs: dt: fix several broken doc references

2020-02-24 Thread Jérôme Pouiller
On Sunday 23 February 2020 09:59:53 CET Mauro Carvalho Chehab wrote: > There are several DT doc references that require manual fixes. > I found 3 cases fixed on this patch: > > - directory named "binding/" instead of "bindings/"; > - .txt to .yaml renames; > - file renames

Re: [PATCH] staging: wfx: match parentheses alignment

2020-02-24 Thread Jérôme Pouiller
On Sunday 23 February 2020 20:32:01 CET Kaaira Gupta wrote: > > match next line with open parentheses by giving appropriate tabs. Maybe the body of the commit message should start with a capital letter, else: Reviewed-by: Jérôme Pouiller > > Signed-off-by: Kaaira Gupta > --- > drivers/stagi

[PATCH] staging: kpc2000: prevent underflow in cpld_reconfigure()

2020-02-24 Thread Dan Carpenter
This function should not allow negative values of "wr_val". If negatives are allowed then capping the upper bound at 7 is meaningless. Let's make it unsigned. Fixes: 7dc7967fc39a ("staging: kpc2000: add initial set of Daktronics drivers") Signed-off-by: Dan Carpenter --- drivers/staging/kpc200

AW: [PATCH] staging: rtl8723bs: core: remove redundant zero'ing of counter variable k

2020-02-24 Thread Walter Harms
Von: kernel-janitors-ow...@vger.kernel.org im Auftrag von Colin King Gesendet: Sonntag, 23. Februar 2020 16:28 An: Greg Kroah-Hartman; de...@driverdev.osuosl.org Cc: kernel-janit...@vger.kernel.org; linux-ker...@vger.kernel.org Betreff: [PATCH] staging

Re: [PATCH] staging: rtl8723bs: core: remove redundant zero'ing of counter variable k

2020-02-24 Thread Dan Carpenter
On Mon, Feb 24, 2020 at 11:07:55AM +, Walter Harms wrote: > diff --git a/drivers/staging/rtl8723bs/core/rtw_efuse.c > b/drivers/staging/rtl8723bs/core/rtw_efuse.c > index 3b8848182221..bdb6ff8aab7d 100644 > --- a/drivers/staging/rtl8723bs/core/rtw_efuse.c > +++ b/drivers/staging/rtl8723bs/core

AW: [PATCH] staging: rtl8723bs: core: remove redundant zero'ing of counter variable k

2020-02-24 Thread Walter Harms
Von: Dan Carpenter Gesendet: Montag, 24. Februar 2020 12:27 An: Walter Harms Cc: Colin King; Greg Kroah-Hartman; de...@driverdev.osuosl.org; kernel-janit...@vger.kernel.org; linux-ker...@vger.kernel.org Betreff: Re: [PATCH] staging: rtl8723bs: core: remo

Re: [PATCH v3] staging: qlge: emit debug and dump at same level

2020-02-24 Thread Joe Perches
On Sun, 2020-02-23 at 23:01 +0530, Kaaira Gupta wrote: > Simplify code in ql_mpi_core_to_log() by calling print_hex_dump() > instead of existing functions so that the debug and dump are > emitted at the same KERN_ [] > Also, can you please help me understand how are are numbers 32 and 4 > chosen fo

Re: [PATCH] docs: dt: fix several broken doc references

2020-02-24 Thread Mark Brown
On Sun, Feb 23, 2020 at 09:59:53AM +0100, Mauro Carvalho Chehab wrote: > There are several DT doc references that require manual fixes. > I found 3 cases fixed on this patch: > > - directory named "binding/" instead of "bindings/"; > - .txt to .yaml renames; > - file renames (sti

Re: [greybus-dev] [PATCH] staging: greybus: match parenthesis alignment

2020-02-24 Thread Laurent Pinchart
Hi Kaaira, Thank you for the patch. On Thu, Feb 20, 2020 at 01:26:51AM +0530, Kaaira Gupta wrote: > Fix checkpatch.pl warning of alignment should match open parenthesis in > audio_codec.c > > Signed-off-by: Kaaira Gupta > --- > drivers/staging/greybus/audio_codec.c | 8 > 1 file chang

Re: [PATCH v4] staging: qlge: emit debug and dump at same level

2020-02-24 Thread Joe Perches
On Mon, 2020-02-24 at 13:54 +0530, Kaaira Gupta wrote: > Simplify code in ql_mpi_core_to_log() by calling print_hex_dump() > instead of existing functions so that the debug and dump are > emitted at the same KERN_ [] > diff --git a/drivers/staging/qlge/qlge_dbg.c b/drivers/staging/qlge/qlge_dbg.c [

Re: [PATCH] staging: wfx: match parentheses alignment

2020-02-24 Thread Joe Perches
On Mon, 2020-02-24 at 01:02 +0530, Kaaira Gupta wrote: > match next line with open parentheses by giving appropriate tabs. This patch is only for data_tx.c There are many more parentheses that are not aligned in staging/wfx in other files. Realistically, either change the subject to show that it

[PATCH v2] staging: wfx: data_tx.c: match parentheses alignment

2020-02-24 Thread Kaaira Gupta
On Mon, Feb 24, 2020 at 06:13:32AM -0800, Joe Perches wrote: > On Mon, 2020-02-24 at 01:02 +0530, Kaaira Gupta wrote: > > Match next line with open parentheses by giving appropriate tabs. Changed the first word to caps. Will keep this in mind from now on. Thanks! > > This patch is only for data_

Re: [PATCH v4] staging: qlge: emit debug and dump at same level

2020-02-24 Thread Kaaira Gupta
On Mon, Feb 24, 2020 at 05:38:09AM -0800, Joe Perches wrote: > On Mon, 2020-02-24 at 13:54 +0530, Kaaira Gupta wrote: > > Simplify code in ql_mpi_core_to_log() by calling print_hex_dump() > > instead of existing functions so that the debug and dump are > > emitted at the same KERN_ > [] > > diff --

Re: [greybus-dev] [PATCH] staging: greybus: match parenthesis alignment

2020-02-24 Thread Kaaira Gupta
On Mon, Feb 24, 2020 at 01:49:29PM +0200, Laurent Pinchart wrote: > Hi Kaaira, > > Thank you for the patch. > > On Thu, Feb 20, 2020 at 01:26:51AM +0530, Kaaira Gupta wrote: > > Fix checkpatch.pl warning of alignment should match open parenthesis in > > audio_codec.c > > > > Signed-off-by: Kaair

Re: [PATCH v4] staging: qlge: emit debug and dump at same level

2020-02-24 Thread Joe Perches
On Mon, 2020-02-24 at 22:17 +0530, Kaaira Gupta wrote: > On Mon, Feb 24, 2020 at 05:38:09AM -0800, Joe Perches wrote: > > On Mon, 2020-02-24 at 13:54 +0530, Kaaira Gupta wrote: > > > Simplify code in ql_mpi_core_to_log() by calling print_hex_dump() > > > instead of existing functions so that the de

Re: [PATCH v4] staging: qlge: emit debug and dump at same level

2020-02-24 Thread Kaaira Gupta
On Mon, Feb 24, 2020 at 08:54:43AM -0800, Joe Perches wrote: > On Mon, 2020-02-24 at 22:17 +0530, Kaaira Gupta wrote: > > On Mon, Feb 24, 2020 at 05:38:09AM -0800, Joe Perches wrote: > > > On Mon, 2020-02-24 at 13:54 +0530, Kaaira Gupta wrote: > > > > Simplify code in ql_mpi_core_to_log() by callin

Re: [PATCH v4] staging: qlge: emit debug and dump at same level

2020-02-24 Thread Joe Perches
On Mon, 2020-02-24 at 22:48 +0530, Kaaira Gupta wrote: > On Mon, Feb 24, 2020 at 08:54:43AM -0800, Joe Perches wrote: > > On Mon, 2020-02-24 at 22:17 +0530, Kaaira Gupta wrote: > > > On Mon, Feb 24, 2020 at 05:38:09AM -0800, Joe Perches wrote: > > > > On Mon, 2020-02-24 at 13:54 +0530, Kaaira Gupta

Re: [PATCH] docs: dt: fix several broken doc references

2020-02-24 Thread Rob Herring
On Sun, Feb 23, 2020 at 09:59:53AM +0100, Mauro Carvalho Chehab wrote: > There are several DT doc references that require manual fixes. > I found 3 cases fixed on this patch: > > - directory named "binding/" instead of "bindings/"; > - .txt to .yaml renames; > - file renames (sti

Dear Beloved,

2020-02-24 Thread Rev.Wright Watson
Dear Beloved, I'm Reverend Wright Watson, I was born in USA, 1945, I was ordained into the Catholic Priesthood. Please take your time to read this message, although we have never met before, this is no spam, It's a real message sent to you. I know also that you will be amazed at the level of trus

[PATCH] staging: iio: update TODO

2020-02-24 Thread Rohit Sarkar
gre...@linuxfoundation.org, ji...@kernel.org Bcc: Subject: [PATCH] staging: iio: update TODO Reply-To: Since there are no more uses of the old GPIO API in iio staging drivers remove that work item from the TODO. Add other work items with reference to the conversation in [1] [1]: https://marc.i

Re: [PATCH] staging: qlge: add braces around macro arguments

2020-02-24 Thread Benjamin Poirier
On 2020/02/24 13:22 +0530, Kaaira Gupta wrote: > On Mon, Feb 24, 2020 at 02:32:25PM +0900, Benjamin Poirier wrote: > > On 2020/02/22 01:26 +0530, Kaaira Gupta wrote: > > > Fix checkpatch.pl warnings of adding braces around macro arguments to > > > prevent precedence issues by adding braces in qlge_

Are you still alive? Urgent reply is needed

2020-02-24 Thread Coris Bank
Dear Beneficiary, Please confirm if you are still alive because two gentle men walked into my office this morning to claim your inheritance funds with our bank. They said you are dead and that they are your representatives. On November 21, 2008. A business man (name withheld for security re

Re: [PATCH 1/3] compiler.h: define __do_not_initialize

2020-02-24 Thread Kees Cook
On Mon, Feb 24, 2020 at 04:34:59PM +0100, gli...@google.com wrote: > For CONFIG_INIT_STACK_ALL it's sometimes handy to disable > force-initialization for a local variable, if it is known to be initialized > later on before the first use. This can be done by using the > __do_not_initialize macro. N

Re: [PATCH 2/3] binder: do not initialize locals passed to copy_from_user()

2020-02-24 Thread Kees Cook
On Mon, Feb 24, 2020 at 04:35:00PM +0100, gli...@google.com wrote: > Certain copy_from_user() invocations in binder.c are known to > unconditionally initialize locals before their first use, like e.g. in > the following case: > > struct binder_transaction_data tr; > if (copy_from_user(

[PATCH v7 2/2] drm/bridge: anx7625: Add anx7625 MIPI DSI/DPI to DP bridge driver

2020-02-24 Thread Xin Ji
The ANX7625 is an ultra-low power 4K Mobile HD Transmitter designed for portable device. It converts MIPI DSI/DPI to DisplayPort 1.3 4K. The ANX7625 can support both USB Type-C PD feature and MIPI DSI/DPI to DP feature. This driver only enabled MIPI DSI/DPI to DP feature. Signed-off-by: Xin Ji -

[staging:staging-next] BUILD SUCCESS c85f15519d45588ce6ab8ad18616d2c0175a25d6

2020-02-24 Thread kbuild test robot
-a001-20200224 x86_64 randconfig-a002-20200224 x86_64 randconfig-a003-20200224 i386 randconfig-a001-20200224 i386 randconfig-a002-20200224 i386 randconfig-a003-20200224 x86_64 randconfig-a001-20200225 x86_64

[PATCH v3 17/18] dt: bindings: net: add microchip,wilc1000,spi.yaml

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved '/drivers/staging/wilc1000//microchip,wilc1000,spi.yaml' to 'Documentation/devicetree/bindings/net/wireless/microchip,wilc1000,spi.yaml'. Signed-off-by: Ajay Singh --- .../net/wireless/microchip,wilc1000,spi.yaml | 61 +++ 1 file changed, 61 insertions(+

[PATCH v3 07/18] wilc1000: add cfg80211.h

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved 'drivers/staging/wilc1000/cfg80211.h' to 'drivers/net/wireless/microchip/wilc1000/cfg80211.h'. Signed-off-by: Ajay Singh --- .../wireless/microchip/wilc1000/cfg80211.h| 29 +++ 1 file changed, 29 insertions(+) create mode 100644 drivers/net/wireless/

[PATCH v3 16/18] dt: bindings: net: add microchip,wilc1000,sdio.yaml

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved '/drivers/staging/wilc1000/microchip,wilc1000,sdio.yaml' to 'Documentation/devicetree/bindings/net/wireless/microchip,wilc1000,sdio.yaml'. Signed-off-by: Ajay Singh --- .../net/wireless/microchip,wilc1000,sdio.yaml | 68 +++ 1 file changed, 68 insertions(

[PATCH v3 14/18] wilc1000: add sdio.c

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved 'drivers/staging/wilc1000/sdio.c' to 'drivers/net/wireless/microchip/wilc1000/sdio.c'. Signed-off-by: Ajay Singh --- .../net/wireless/microchip/wilc1000/sdio.c| 1030 + 1 file changed, 1030 insertions(+) create mode 100644 drivers/net/wireless/microc

[PATCH v3 02/18] wilc1000: add hif.c

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved 'drivers/staging/wilc1000/hif.c' to 'drivers/net/wireless/microchip/wilc1000/hif.c'. Signed-off-by: Ajay Singh --- drivers/net/wireless/microchip/wilc1000/hif.c | 1959 + 1 file changed, 1959 insertions(+) create mode 100644 drivers/net/wireless/microchi

[PATCH v3 05/18] wilc1000: add wlan_cfg.c

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved 'drivers/staging/wilc1000/wlan_cfg.c' to 'drivers/net/wireless/microchip/wilc1000/wlan_cfg.c'. Signed-off-by: Ajay Singh --- .../wireless/microchip/wilc1000/wlan_cfg.c| 413 ++ 1 file changed, 413 insertions(+) create mode 100644 drivers/net/wireless

[PATCH v3 15/18] wilc1000: add fw.h

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved 'drivers/staging/wilc1000/fw.h' to 'drivers/net/wireless/microchip/wilc1000/fw.h'. Signed-off-by: Ajay Singh --- drivers/net/wireless/microchip/wilc1000/fw.h | 119 +++ 1 file changed, 119 insertions(+) create mode 100644 drivers/net/wireless/microchip/w

[PATCH v3 11/18] wilc1000: add spi.c

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved 'drivers/staging/wilc1000/spi.c' to 'drivers/net/wireless/microchip/wilc1000/spi.c'. Signed-off-by: Ajay Singh --- drivers/net/wireless/microchip/wilc1000/spi.c | 1001 + 1 file changed, 1001 insertions(+) create mode 100644 drivers/net/wireless/microchi

[PATCH v3 03/18] wilc1000: add wlan_if.h

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved 'drivers/staging/wilc1000/wlan_if.h' to 'drivers/net/wireless/microchip/wilc1000/wlan_if.h'. Signed-off-by: Ajay Singh --- .../net/wireless/microchip/wilc1000/wlan_if.h | 803 ++ 1 file changed, 803 insertions(+) create mode 100644 drivers/net/wireless/m

[PATCH v3 10/18] wilc1000: add mon.c

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved 'drivers/staging/wilc1000/mon.c' to 'drivers/net/wireless/microchip/wilc1000/mon.c'. Signed-off-by: Ajay Singh --- drivers/net/wireless/microchip/wilc1000/mon.c | 260 ++ 1 file changed, 260 insertions(+) create mode 100644 drivers/net/wireless/microchip

[PATCH v3 01/18] wilc1000: add hif.h

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved 'drivers/staging/wilc1000/hif.h' to 'drivers/net/wireless/microchip/wilc1000/hif.h'. Signed-off-by: Ajay Singh --- drivers/net/wireless/microchip/wilc1000/hif.h | 214 ++ 1 file changed, 214 insertions(+) create mode 100644 drivers/net/wireless/microchip

[PATCH v3 00/18] wilc1000: move out of staging

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh This patch series is to review and move wilc1000 driver out of staging. Most of the review comments received in [1] & [2] are addressed in the latest code. Please review and provide your inputs. [1]. https://lore.kernel.org/linux-wireless/1537957525-11467-1-git-send-email-ajay.

[PATCH v3 08/18] wilc1000: add netdev.h

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved 'drivers/staging/wilc1000/netdev.h' to 'drivers/net/wireless/microchip/wilc1000/netdev.h'. Signed-off-by: Ajay Singh --- .../net/wireless/microchip/wilc1000/netdev.h | 295 ++ 1 file changed, 295 insertions(+) create mode 100644 drivers/net/wireless/mic

[PATCH v3 04/18] wilc1000: add wlan_cfg.h

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved 'drivers/staging/wilc1000/wlan_cfg.h' to 'drivers/net/wireless/microchip/wilc1000/wlan_cfg.h'. Signed-off-by: Ajay Singh --- .../wireless/microchip/wilc1000/wlan_cfg.h| 54 +++ 1 file changed, 54 insertions(+) create mode 100644 drivers/net/wireless/

[PATCH v3 13/18] wilc1000: add wlan.c

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved 'drivers/staging/wilc1000/wlan.c' to 'drivers/net/wireless/microchip/wilc1000/wlan.c'. Signed-off-by: Ajay Singh --- .../net/wireless/microchip/wilc1000/wlan.c| 1240 + 1 file changed, 1240 insertions(+) create mode 100644 drivers/net/wireless/microc

Re: [PATCH v7 0/2] Add initial support for slimport anx7625

2020-02-24 Thread Dan Carpenter
On Tue, Feb 25, 2020 at 02:11:39PM +0800, Xin Ji wrote: > Hi all, > > The following series add initial support for the Slimport ANX7625 > transmitter, a > ultra-low power Full-HD 4K MIPI to DP transmitter designed for portable > device. > > This is the initial version, any mistakes, please let

[PATCH v3 06/18] wilc1000: add cfg80211.c

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved 'drivers/staging/wilc1000/cfg80211.c' to 'drivers/net/wireless/microchip/wilc1000/cfg80211.c'. Signed-off-by: Ajay Singh --- .../wireless/microchip/wilc1000/cfg80211.c| 1852 + 1 file changed, 1852 insertions(+) create mode 100644 drivers/net/wireles

[PATCH v3 18/18] wilc1000: add Makefile and Kconfig files for wilc1000 compilation

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Added Makefile and Kconfig files for compiling wilc1000 module from 'drivers/net/wireless/microchip/'. Signed-off-by: Ajay Singh --- drivers/net/wireless/Kconfig | 1 + drivers/net/wireless/Makefile | 1 + drivers/net/wireless/microchip/Kconf

[PATCH v3 12/18] wilc1000: add wlan.h

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved 'drivers/staging/wilc1000/wlan.h' to 'drivers/net/wireless/microchip/wilc1000/wlan.h'. Signed-off-by: Ajay Singh --- .../net/wireless/microchip/wilc1000/wlan.h| 398 ++ 1 file changed, 398 insertions(+) create mode 100644 drivers/net/wireless/microch

[PATCH v3 09/18] wilc1000: add netdev.c

2020-02-24 Thread Ajay.Kathat
From: Ajay Singh Moved 'drivers/staging/wilc1000/netdev.c' to 'drivers/net/wireless/microchip/wilc1000/netdev.c'. Signed-off-by: Ajay Singh --- .../net/wireless/microchip/wilc1000/netdev.c | 940 ++ 1 file changed, 940 insertions(+) create mode 100644 drivers/net/wireless/mic

[PATCH v7 1/2] dt-bindings: drm/bridge: anx7625: MIPI to DP transmitter binding

2020-02-24 Thread Xin Ji
The ANX7625 is an ultra-low power 4K Mobile HD Transmitter designed for portable device. It converts MIPI to DisplayPort 1.3 4K. You can add support to your board with binding. Example: anx7625_bridge: encoder@58 { compatible = "analogix,anx7625"; reg = <0x