Thanks and I wait for your answer

2019-06-06 Thread Martins Henry
Hello, I am Martin Henry, An American Citizen; I am the personal secretary to Mr. Donald Railton, the controller of a Lottery Company. Please I am having big problem now, I have a 6yrs old daughter who has leukemia, a disease of the blood, and she needs a bone marrow transplant or she will die. P

[PATCH] Staging: vc04_services : vchiq_core: Fix a brace issue

2019-06-06 Thread Maxime Desroches
Remove braces in a single line if statement in the vchiq_core.c file Signed-off-by: Maxime Desroches --- drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_co

[PATCH 3/3] staging: rtl8712: usb_halinit.c: Remove p from variable names

2019-06-06 Thread Nishka Dasgupta
Remove leading 'p' from the names of the following pointer variables: - padapter - precvbuf - pintfhdl - pregistrypriv - precvpriv. Issue found with Coccinelle. Signed-off-by: Nishka Dasgupta --- drivers/staging/rtl8712/usb_halinit.c | 288 +- 1 file c

[PATCH 1/3] staging: rtl8712: xmit_linux.c: Remove leading p from variable names

2019-06-06 Thread Nishka Dasgupta
Remove leading p from the names of the following pointer variables: - padapter - pxmitpriv - pnetdev - pxmitframe. Issue found with Coccinelle. Signed-off-by: Nishka Dasgupta --- drivers/staging/rtl8712/xmit_linux.c | 50 ++-- 1 file changed, 25 insertions(+), 25 deletion

[PATCH 2/3] staging: rtl8712: usb_ops.c: Remove leading p from variable names

2019-06-06 Thread Nishka Dasgupta
Remove leading 'p' from the names of the following pointer variables: - pintfhdl - pintf_hdl (renamed to intfhdl in keeping with the convention in other functions) - poption - pops - pintfpriv. Issue found with Coccinelle. Signed-off-by: Nishka Dasgupta --- drivers/staging/rtl8712/usb_ops.c | 84

[PATCH] staging: rtl8712: recv_linux.c: Remove leading p from variable names

2019-06-06 Thread Nishka Dasgupta
Remove leading p from the following pointer variable names: - padapter - pmlmepriv - precv_frame - precvpriv - pfree_recv_queue - pattrib. Issue found with Coccinelle Signed-off-by: Nishka Dasgupta --- drivers/staging/rtl8712/recv_linux.c | 50 ++-- 1 file changed, 25 ins

[PATCH] staging: rtl8712: hal_init.c: Remove leading p from variable names

2019-06-06 Thread Nishka Dasgupta
Remove the leading p from the following pointer variable names: - padapter - pusb_intf - ppmappedfw - praw - pfwpriv - pdvobj - pregpriv - pmappedfw (not in the same scope as ppmappedfw) - ptmpchar - ppayload - ptx_desc Issue found with Coccinelle. Signed-off-by: Nishka Dasgupta --- drivers/stag

[PATCH] staging: rtl8723bs: Fix Unneeded variable: "ret". Return "0"

2019-06-06 Thread Shobhit Kukreti
coccicheck reported Unneeded variable ret at rtl8723bs/core/rtw_ap.c:1400. Function "rtw_acl_remove_sta" always returns 0. Modified return type of the function to void. Signed-off-by: Shobhit Kukreti --- drivers/staging/rtl8723bs/core/rtw_ap.c| 4 +--- drivers/staging/rtl8723bs/include/r

Re: [PATCH v2 2/3] media: imx7-media-csi: add i.MX6UL support

2019-06-06 Thread Randy Dunlap
On 6/6/19 8:38 AM, Sébastien Szymanski wrote: > i.MX7 and i.MX6UL/L have the same CSI controller. So add i.MX6UL/L support > to imx7-media-csi driver. > > Signed-off-by: Sébastien Szymanski > --- > > Changes for v2: > - rebase on top of linuxtv/master > - mention i.MX6UL/L in header and Kconfi

[PATCH v2 2/3] media: imx7-media-csi: add i.MX6UL support

2019-06-06 Thread Sébastien Szymanski
i.MX7 and i.MX6UL/L have the same CSI controller. So add i.MX6UL/L support to imx7-media-csi driver. Signed-off-by: Sébastien Szymanski --- Changes for v2: - rebase on top of linuxtv/master - mention i.MX6UL/L in header and Kconfig help text - rename csi_type to csi_soc_id drivers/staging/m

RE: [PATCH 1/2] staging: kpc2000: Use '%llx' for printing 'long long int' type

2019-06-06 Thread Matt Sickler
>-Original Message- >From: Fabio Estevam >Hi Greg, > >Please discard this. It fixes arm32 build warning, but introduces >warnings with arm64. > >I will think about a better fix. The hardware/driver will only ever be used on amd64. If it can be totally disabled for any other architectur

[PATCH v2 1/3] ARM: dts: imx6ul: Add csi node

2019-06-06 Thread Sébastien Szymanski
Add csi node for i.MX6UL SoC. Reviewed-by: Fabio Estevam Signed-off-by: Sébastien Szymanski --- Changes for v2: - only "mclk" clock is required now. arch/arm/boot/dts/imx6ul.dtsi | 9 + 1 file changed, 9 insertions(+) diff --git a/arch/arm/boot/dts/imx6ul.dtsi b/arch/arm/boot/dts/im

Re: [PATCH v2 1/2] dt-bindings: iio: adc: add adi,ad7780.yaml binding

2019-06-06 Thread Jonathan Cameron
On Thu, 6 Jun 2019 11:13:52 + "Ardelean, Alexandru" wrote: > On Wed, 2019-06-05 at 17:35 -0300, Renato Lui Geh wrote: > > [External] > > > > > > On 05/26, Jonathan Cameron wrote: > > > On Fri, 24 May 2019 22:26:30 -0300 > > > Renato Lui Geh wrote: > > > > > > > This patch adds a YAML

[PATCH v2 3/3] media: dt-bindings: imx7-csi: add i.MX6UL/L support

2019-06-06 Thread Sébastien Szymanski
Document "fsl,imx6ul-csi" entry. Signed-off-by: Sébastien Szymanski --- Changes for v2: - New patch to document new "fsl,imx6ul-csi" entry. Documentation/devicetree/bindings/media/imx7-csi.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/binding

[PATCH v2] staging: rtl8723bs: Resolve "(foo*)" should be "(foo *)" error reported by checkpatch

2019-06-06 Thread Shobhit Kukreti
Cleaned up the code to remove the error "(foo*)" should be "(foo *)" reported by checkpatch from the file rtl8723bs/os_dep/ioctl_linux.c Signed-off-by: Shobhit Kukreti --- Changes in v2: - Modified commit message to include reported ERROR by checkpatch drivers/staging/rtl8723bs/os_dep/ioctl_li

KMSAN: uninit-value in r871xu_drv_init

2019-06-06 Thread syzbot
Hello, syzbot found the following crash on: HEAD commit:f75e4cfe kmsan: use kmsan_handle_urb() in urb.c git tree: kmsan console output: https://syzkaller.appspot.com/x/log.txt?x=153453dea0 kernel config: https://syzkaller.appspot.com/x/.config?x=602468164ccdc30a dashboard link: ht

Re: [PATCH] staging: rtl8723bs: CleanUp to remove the error reported by checkpatch

2019-06-06 Thread Greg Kroah-Hartman
On Wed, Jun 05, 2019 at 06:59:52PM -0700, Shobhit Kukreti wrote: > Cleaned up the code to remove the error "(foo*)" should be "(foo *)" > reported by checkpatch from the file rtl8723bs/os_dep/ioctl_linux.c Your subject line shoudl give a hint as to what the error you are fixing is. Also, no need

Re: [PATCH] staging: rtl8188eu: core: Replace function rtw_free_network_nolock

2019-06-06 Thread Greg KH
On Tue, Jun 04, 2019 at 01:42:22PM +0530, Nishka Dasgupta wrote: > Remove function rtw_free_network_nolock, as all it does is call > _rtw_free_network_nolock, and rename _rtw_free_network_nolock to > rtw_free_network_nolock. > > Signed-off-by: Nishka Dasgupta > --- > drivers/staging/rtl8188eu/co

Re: [PATCH 4/7] staging: kpc2000: use __func__ in debug messages in core.c

2019-06-06 Thread Greg KH
On Tue, Jun 04, 2019 at 12:29:13AM +0200, Simon Sandström wrote: > Fixes checkpatch.pl warning "Prefer using '"%s...", __func__' to using > '', this function's name, in a string". > > Signed-off-by: Simon Sandström > --- > drivers/staging/kpc2000/kpc2000/core.c | 10 +- > 1 file changed,

Re: [PATCH 3/7] media: cedrus: Fix decoding for some H264 videos

2019-06-06 Thread Dan Carpenter
On Mon, Jun 03, 2019 at 05:37:17PM +0200, Jernej Škrabec wrote: > Dne ponedeljek, 03. junij 2019 ob 13:55:36 CEST je Maxime Ripard napisal(a): > > int current = 0; > > > > while (current < num) { > > int tmp = min(num - current, 32); > > > > cedrus_write(dev, VE_H264_TRIGGER_TYPE, 0x3 | (

Re: [PATCH 7/7] staging: kpc2000: fix incorrect code comment in core.c

2019-06-06 Thread Dan Carpenter
On Tue, Jun 04, 2019 at 12:29:16AM +0200, Simon Sandström wrote: > Step 11 was removed from kp2000_pcie_probe in a previous commit but the > comment was not changed to reflect this, so do it now. > > Signed-off-by: Simon Sandström > --- > drivers/staging/kpc2000/kpc2000/core.c | 2 +- > 1 file c

Re: [PATCH v2 1/2] dt-bindings: iio: adc: add adi,ad7780.yaml binding

2019-06-06 Thread Ardelean, Alexandru
On Wed, 2019-06-05 at 17:35 -0300, Renato Lui Geh wrote: > [External] > > > On 05/26, Jonathan Cameron wrote: > > On Fri, 24 May 2019 22:26:30 -0300 > > Renato Lui Geh wrote: > > > > > This patch adds a YAML binding for the Analog Devices AD7780/1 and > > > AD7170/1 analog-to-digital converters

Re: [PATCH] Staging: emxx_udc: fix warning "sum of probable bitmasks, consider |"

2019-06-06 Thread Dan Carpenter
On Wed, Jun 05, 2019 at 12:04:43PM +0530, Hariprasad Kelam wrote: > On Mon, Jun 03, 2019 at 09:04:57PM +0200, Greg Kroah-Hartman wrote: > > On Tue, Jun 04, 2019 at 12:24:12AM +0530, Hariprasad Kelam wrote: > > > Knowing the fact that operator '|' is faster than '+'. > > > Its better we replace + wi

Re: [PATCH 6/7] media: cedrus: Add infra for extra buffers connected to capture buffers

2019-06-06 Thread Maxime Ripard
On Mon, Jun 03, 2019 at 05:48:25PM +0200, Jernej Škrabec wrote: > Dne ponedeljek, 03. junij 2019 ob 14:18:59 CEST je Maxime Ripard napisal(a): > > > +static void cedrus_buf_cleanup(struct vb2_buffer *vb) > > > +{ > > > + struct vb2_queue *vq = vb->vb2_queue; > > > + > > > + if (!V4L2_TYPE_IS_OUTPUT