[driver-core:driver-core-testing] BUILD SUCCESS ae016b9da7bcb3b4ddd95afc406ddf5b27a859d5

2022-02-25 Thread kernel test robot
arm allmodconfig i386 randconfig-c001 powerpc randconfig-c003-20220225 mips randconfig-c004-20220225 s390 debug_defconfig armshmobile_defconfig sh

[staging:staging-testing] BUILD SUCCESS 83ba9a33b56673263981d5633fd6a96d83dabc21

2022-02-25 Thread kernel test robot
allmodconfig i386 randconfig-c001 powerpc randconfig-c003-20220225 mips randconfig-c004-20220225 s390 debug_defconfig armshmobile_defconfig sh microdev_defconfig sh

My Offer

2022-02-25 Thread Mr. John Gabriel
-- Hello, Good Day friend, My name is Mr. J. Philip Gabriel, I work with one of the leading security company here in Germany I have sent you an email severe times but I'm not sure if you received it, because I have not heard from you, this is the reason why I repeated it again. I am in possessio

[PATCH 10/10] staging: wfx: flags for SPI IRQ were ignored

2022-02-25 Thread Jerome Pouiller
From: Jérôme Pouiller The flags declared in the DT were not forwarded to request_irq(). Fixes: a7efb62509d8 ("staging: wfx: use threaded IRQ with SPI") Signed-off-by: Jérôme Pouiller --- drivers/staging/wfx/bus_spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/s

[PATCH 09/10] staging: wfx: ensure HIF request has been sent before polling

2022-02-25 Thread Jerome Pouiller
From: Jérôme Pouiller wfx_bh_request_tx() send HIF request asynchronously through bh_work(). Then the caller will run wfx_bh_poll_irq() to poll the answer. However it useless to burn CPU cycles for the polling while the request has yet been sent. Worse, wfx_bh_poll_irq() may get the CPU and prev

[PATCH 08/10] staging: wfx: prefer to wait for an event instead to sleep

2022-02-25 Thread Jerome Pouiller
From: Jérôme Pouiller When possible it is better to wait for an explicit event instead of wait an arbitrary amount of time. Signed-off-by: Jérôme Pouiller --- drivers/staging/wfx/hif_tx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/wfx/hif_tx.c b/dri

[PATCH 07/10] staging: wfx: remove duplicated code in wfx_cmd_send()

2022-02-25 Thread Jerome Pouiller
From: Jérôme Pouiller The code to execute on end of the function is the same whatever the command replies or not. Signed-off-by: Jérôme Pouiller --- drivers/staging/wfx/hif_tx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/wfx/hif_tx.c b/drivers/sta

[PATCH 06/10] staging: wfx: drop useless include

2022-02-25 Thread Jerome Pouiller
From: Jérôme Pouiller ieee80211.h is useless since commit 5e911c3d9dbc9 ("staging: wfx: avoid defining array of flexible struct") Signed-off-by: Jérôme Pouiller --- drivers/staging/wfx/hif_api_cmd.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/wfx/hif_api_cmd.h b/drive

[PATCH 05/10] staging: wfx: remove useless variable

2022-02-25 Thread Jerome Pouiller
From: Jérôme Pouiller Obviously, the variable "ret" was useless. Signed-off-by: Jérôme Pouiller --- drivers/staging/wfx/sta.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/wfx/sta.c b/drivers/staging/wfx/sta.c index 28474614a8e5..b1e9fb14d2b4 100644 --

[PATCH 04/10] staging: wfx: format code on 100 columns

2022-02-25 Thread Jerome Pouiller
From: Jérôme Pouiller A few lines were not yet formatted on 100 columns. Signed-off-by: Jérôme Pouiller --- drivers/staging/wfx/fwio.c | 3 +-- drivers/staging/wfx/hif_rx.c | 3 +-- drivers/staging/wfx/hif_tx.c | 3 +-- drivers/staging/wfx/hif_tx_mib.c | 3 +-- drivers/staging/wf

[PATCH 03/10] staging: wfx: format comments on 100 columns

2022-02-25 Thread Jerome Pouiller
From: Jérôme Pouiller A few comments were not yet formatted on 100 columns. Signed-off-by: Jérôme Pouiller --- drivers/staging/wfx/data_tx.c | 8 ++-- drivers/staging/wfx/queue.c | 9 - 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/drivers/staging/wfx/data_tx.c

[PATCH 02/10] staging: wfx: fix struct alignment

2022-02-25 Thread Jerome Pouiller
From: Jérôme Pouiller There is no reason to add multiple spaces between a variable name and its type. Signed-off-by: Jérôme Pouiller --- drivers/staging/wfx/bus_spi.c | 28 ++-- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/drivers/staging/wfx/bus_spi.

[PATCH 01/10] staging: wfx: sta.o was linked twice

2022-02-25 Thread Jerome Pouiller
From: Jérôme Pouiller sta.o was listed twice in the Makefile. Signed-off-by: Jérôme Pouiller --- drivers/staging/wfx/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/wfx/Makefile b/drivers/staging/wfx/Makefile index ae94c6552d77..c8b356f71c99 100644 --- a/drivers/sta

[PATCH 00/10] staging: wfx: usual maintenance

2022-02-25 Thread Jerome Pouiller
From: Jérôme Pouiller This PR contains fixes for various small defects I have seen these last weeks. Jérôme Pouiller (10): staging: wfx: sta.o was linked twice staging: wfx: fix struct alignment staging: wfx: format comments on 100 columns staging: wfx: format code on 100 columns stagi