Good day

2019-07-26 Thread Raymond Chien Kuo Fung
I am Vice Chairman of Hang Seng Bank, I have Important Matter to Discuss with you concerning my late client, Died without a NEXT OF KIN. Send me your private email for full details information. email me at (infocar...@aim.com) Mail:infocar...@aim.com Regards Dr.Raymond Chien Kuo Fung

Good day

2019-07-26 Thread Raymond Chien Kuo Fung
I am Vice Chairman of Hang Seng Bank, I have Important Matter to Discuss with you concerning my late client, Died without a NEXT OF KIN. Send me your private email for full details information. email me at (infocar...@aim.com) Mail:infocar...@aim.com Regards Dr.Raymond Chien Kuo Fung

GOOD DAY

2019-07-26 Thread Mr.R.Chien Kuo Fung
I am Vice Chairman of Hang Seng Bank, I have Important Matter to Discuss with you concerning my late client, Died without a NEXT OF KIN. Send me your private email for full details information. email me at (infocar...@aim.com) Regards Dr.Raymond Chien Kuo Fung

[PATCH v3 -next] staging: vc04_services: fix unused-but-set-variable warning

2019-07-26 Thread YueHaibing
Fix gcc used-but-set-variable warning: drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c: In function vchiq_release_internal: drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c:2827:16: warning: variable local_entity_uc set but not used [-Wunused-but-set-variable]

Re: [PATCH v2 -next] staging: vc04_services: fix used-but-set-variable warning

2019-07-26 Thread Yuehaibing
On 2019/7/26 23:57, Stefan Wahren wrote: > Hi Yue, > > Am 26.07.19 um 11:26 schrieb YueHaibing: >> Fix gcc used-but-set-variable warning: > > just a nit. It is call "unused-but-set-variable" Oh, yes, thanks! > > Acked-by: Stefan Wahren > >> >>

[PATCH] Staging: rtl8192e: fixed a function prototype definition issue

2019-07-26 Thread Abhinav Jain
From: Abhinav Jain Added the identifier name in the function prototype definition. Signed-off-by: Abhinav Jain --- drivers/staging/rtl8192e/rtllib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8192e/rtllib.h b/drivers/staging/rtl8192e/rtllib.h index

Re: [PATCH 1/6] staging: rtl8188eu: add spaces around '+' in usb_halinit.c

2019-07-26 Thread Joe Perches
On Fri, 2019-07-26 at 20:04 +0200, Michael Straube wrote: > Add spaces around '+' to improve readability and follow kernel > coding style. Reported by checkpatch. My preference would be to do all the horizontal whitespace changes for the entire driver in one go without worrying about long lines.

Re: [PATCH 1/6] staging: rtl8188eu: add spaces around '+' in usb_halinit.c

2019-07-26 Thread Larry Finger
On 7/26/19 1:04 PM, Michael Straube wrote: Add spaces around '+' to improve readability and follow kernel coding style. Reported by checkpatch. Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/hal/usb_halinit.c | 76 ++--- 1 file changed, 38 insertions(+), 38

Re: [PATCH] staging:iio:adc:ad7280a: add of_match_table entry

2019-07-26 Thread Matheus Tavares Bernardino
On Fri, Jul 26, 2019 at 2:30 AM Ardelean, Alexandru wrote: > > On Fri, 2019-07-26 at 01:38 +0530, Kartik Kulkarni wrote: > > Add the of_device_id struct and the respective > > of_match_device entry to complete device tree support. > > > > This would be a [V2] I suppose. > > This change also does

[PATCH 1/6] staging: rtl8188eu: add spaces around '+' in usb_halinit.c

2019-07-26 Thread Michael Straube
Add spaces around '+' to improve readability and follow kernel coding style. Reported by checkpatch. Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/hal/usb_halinit.c | 76 ++--- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git

[PATCH 4/6] staging: rtl8188eu: add spaces around '<<' and '>>' in usb_halinit.c

2019-07-26 Thread Michael Straube
Add spaces around '<<' and '>>' to improve readability and follow kernel coding style. Reported by checkpatch. Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/hal/usb_halinit.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git

[PATCH 5/6] staging: rtl8188eu: add spaces around '-' and '*' in usb_halinit.c

2019-07-26 Thread Michael Straube
Add spaces around '-' and '*' to improve readability and follow kernel coding style. Reported by checkpatch. Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/hal/usb_halinit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

[PATCH 6/6] staging: rtl8188eu: cleanup comparsion to NULL in usb_halinit.c

2019-07-26 Thread Michael Straube
Use if(!x) instead of if(x == NULL). Reported by checkpatch. Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/hal/usb_halinit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8188eu/hal/usb_halinit.c

[PATCH 2/6] staging: rtl8188eu: add spaces around '&' in usb_halinit.c

2019-07-26 Thread Michael Straube
Add spaces around '&' to improve readability and follow kernel coding style. Reported by checkpatch. Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/hal/usb_halinit.c | 38 ++--- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git

[PATCH 3/6] staging: rtl8188eu: add spaces around '|' in usb_halinit.c

2019-07-26 Thread Michael Straube
Add spaces around '|' to improve readability and follow kernel coding style. Reported by checkpatch. Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/hal/usb_halinit.c | 17 + 1 file changed, 9 insertions(+), 8 deletions(-) diff --git

Re: [PATCH v2 -next] staging: vc04_services: fix used-but-set-variable warning

2019-07-26 Thread Stefan Wahren
Hi Yue, Am 26.07.19 um 11:26 schrieb YueHaibing: > Fix gcc used-but-set-variable warning: just a nit. It is call "unused-but-set-variable" Acked-by: Stefan Wahren > > drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c: In function > vchiq_release_internal: >

Re: [PATCH] media: staging: davinci: remove vpfe driver

2019-07-26 Thread Sekhar Nori
On 23/07/19 4:14 PM, Arnd Bergmann wrote: > The davinci_vpfe driver was merged into staging back in 2012 by Manjunath > Hadli from TI, with a long TODO list. > > For all I can tell, since then it has only seen fixes for compile-time > issues and global cleanups, but nobody has actually worked on

[PATCH 06/10] staging: rtl8723bs: os_dep: remove two set but not used variables

2019-07-26 Thread YueHaibing
Fixes gcc '-Wunused-but-set-variable' warning: drivers/staging/rtl8723bs//os_dep/osdep_service.c: In function 'rtw_buf_free': drivers/staging/rtl8723bs//os_dep/osdep_service.c:321:6: warning: variable 'ori_len' set but not used [-Wunused-but-set-variable]

[PATCH -next] staging: rtl8723bs: remove set but not used variable 'pszBBRegMpFile'

2019-07-26 Thread YueHaibing
Fixes gcc '-Wunused-but-set-variable' warning: drivers/staging/rtl8723bs/hal/rtl8723b_phycfg.c: In function phy_BB8723b_Config_ParaFile: drivers/staging/rtl8723bs/hal/rtl8723b_phycfg.c:436:77: warning: variable pszBBRegMpFile set but not used [-Wunused-but-set-variable] It is never used so can

[PATCH -next] staging: rtl8723bs: remove set but not used variable 'bWifiBusy'

2019-07-26 Thread YueHaibing
Fixes gcc '-Wunused-but-set-variable' warning: In function halbtc8723b1ant_TdmaDurationAdjustForAcl: drivers/staging/rtl8723bs/hal/HalBtc8723b1Ant.c:1761:7: warning: variable bWifiBusy set but not used [-Wunused-but-set-variable] It is never used so can be removed. Reported-by: Hulk Robot

Re: [PATCH] staging: iio: ad2s1210: Use device-managed API

2019-07-26 Thread Ardelean, Alexandru
On Fri, 2019-07-26 at 19:07 +0800, Chuhong Yuan wrote: > [External] > > Use device-managed API to simplify the code. > The remove function is redundant now and can > be deleted. Reviewed-by: Alexandru Ardelean > > Signed-off-by: Chuhong Yuan > --- > drivers/staging/iio/resolver/ad2s1210.c |

Re: [PATCH v2 00/26] ReST conversion of text files without .txt extension

2019-07-26 Thread Mauro Carvalho Chehab
Em Fri, 26 Jul 2019 09:51:10 -0300 Mauro Carvalho Chehab escreveu: > This series converts the text files under Documentation with doesn't end > neither .txt or .rst and are not part of ABI or features. > > This series is at: >

[PATCH v2 15/26] docs: isdn: convert to ReST and add to kAPI bookset

2019-07-26 Thread Mauro Carvalho Chehab
The ISDN documentation is a mix of admin guide, uAPI and kAPI. Ideally, it should be split. Yet, not sure if it would worth the troble. Anyway, we have the same kind of mix on several drivers specific documentation. So, just like the others, keep the directory at the root Documentation/ tree,

[PATCH v2 00/26] ReST conversion of text files without .txt extension

2019-07-26 Thread Mauro Carvalho Chehab
This series converts the text files under Documentation with doesn't end neither .txt or .rst and are not part of ABI or features. This series is at: https://git.linuxtv.org/mchehab/experimental.git/log/?h=rst_for_5_4_v3 And it is based on yesterday's upstream tree. After this series,

[PATCH] staging: rtl8188eu: remove redundant assignment to rtstatus

2019-07-26 Thread Colin King
From: Colin Ian King Variable rtstatus is initialized to a value that is never read and it is re-assigned later. The initialization is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King --- drivers/staging/rtl8188eu/hal/rf_cfg.c | 2 +- 1 file

Re: Limits for ION Memory Allocator

2019-07-26 Thread Joel Fernandes
On Wed, Jul 24, 2019 at 4:24 PM John Stultz wrote: > > On Wed, Jul 24, 2019 at 1:18 PM John Stultz wrote: > > > > On Wed, Jul 24, 2019 at 12:36 PM Laura Abbott wrote: > > > > > > On 7/17/19 12:31 PM, Alexander Popov wrote: > > > > Hello! > > > > > > > > The syzkaller [1] has a trouble with

[PATCH v2] staging: most: Use DEFINE_SPINLOCK() instead of struct spinlock

2019-07-26 Thread Thomas Gleixner
From: Sebastian Andrzej Siewior For spinlocks the type spinlock_t should be used instead of "struct spinlock". Use DEFINE_SPINLOCK() and spare the run time initialization Signed-off-by: Sebastian Andrzej Siewior Signed-off-by: Thomas Gleixner Link:

[PATCH] staging: iio: ad2s1210: Use device-managed API

2019-07-26 Thread Chuhong Yuan
Use device-managed API to simplify the code. The remove function is redundant now and can be deleted. Signed-off-by: Chuhong Yuan --- drivers/staging/iio/resolver/ad2s1210.c | 12 +--- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/drivers/staging/iio/resolver/ad2s1210.c

[PATCH v2 -next] staging: vc04_services: fix used-but-set-variable warning

2019-07-26 Thread YueHaibing
Fix gcc used-but-set-variable warning: drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c: In function vchiq_release_internal: drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c:2827:16: warning: variable local_entity_uc set but not used [-Wunused-but-set-variable]

Re: [PATCH -next] staging: vc04_services: fix used-but-set-variable warning

2019-07-26 Thread Yuehaibing
On 2019/7/25 22:49, Greg KH wrote: > On Thu, Jul 25, 2019 at 10:27:16PM +0800, YueHaibing wrote: >> use variables 'local_entity_uc' and 'local_uc', >> mute gcc used-but-set-variable warning: >> >> drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c: In function >>

Re: [PATCH v7 0/4] HEVC/H.265 stateless support for V4L2 and Cedrus

2019-07-26 Thread Hans Verkuil
On 7/25/19 8:55 PM, Paul Kocialkowski wrote: > HEVC/H.265 stateless support for V4L2 and Cedrus > > This is early support for HEVC/H.265 stateless decoding in V4L2, > including both definitions and driver support for the Cedrus VPU > driver, which concerns Allwinner devices. > > A specific pixel