[PATCH] staging: media: davinci_vpfe: Replace function vpfe_isif_cleanup()

2019-07-04 Thread Nishka Dasgupta
Rename function isif_remove to vpfe_isif_cleanup, as vpfe_isif_cleanup does nothing but call isif_remove. Change type of new vpfe_isif_cleanup from static to non-static to match the old function definition. Remove the original vpfe_isif_cleanup. Modify calls to isif_remove to vpfe_isif_cleanup. Iss

Re: [OSSNA] Intro to kernel hacking tutorial

2019-07-04 Thread Amit Kumar
On Fri, Jul 5, 2019 at 9:02 AM Amit Kumar wrote: > > On Fri, Jul 5, 2019 at 8:21 AM Tobin C. Harding wrote: > > > > Hi, > > > > I am doing a tutorial at OSSNA in San Diego on getting into kernel > > hacking. I'm only a couple of years deep into kernel hacking so I > > wanted to reach out to thos

Urgent Please

2019-07-04 Thread C. Mullen
Hi, Please confirm to Mr. Fred Anderson, call his direct telephone number +447424632241 if you received my last email, so further details can be advised. Best Regards, Mrs. Catherine Mullen ___ devel mailing list de...@linuxdriverproject.org http://driv

Re: [OSSNA] Intro to kernel hacking tutorial

2019-07-04 Thread Amit Kumar
On Fri, Jul 5, 2019 at 8:21 AM Tobin C. Harding wrote: > > Hi, > > I am doing a tutorial at OSSNA in San Diego on getting into kernel > hacking. I'm only a couple of years deep into kernel hacking so I > wanted to reach out to those more experienced than myself (and those > less experienced). > >

[OSSNA] Intro to kernel hacking tutorial

2019-07-04 Thread Tobin C. Harding
Hi, I am doing a tutorial at OSSNA in San Diego on getting into kernel hacking. I'm only a couple of years deep into kernel hacking so I wanted to reach out to those more experienced than myself (and those less experienced). Is there any thing that you would really like to see covered in this tu

Re: [PATCH] media: bcm2048: Macros with complex values should be enclosed in parentheses

2019-07-04 Thread kbuild test robot
Hi Lukas, Thank you for the patch! Yet something to improve: [auto build test ERROR on linuxtv-media/master] [cannot apply to v5.2-rc7 next-20190704] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux

[driver-core:debugfs_cleanup 185/194] drivers/iommu/omap-iommu-debug.c:253:45: error: 'attrregs_fops' undeclared; did you mean 'regs_fops'?

2019-07-04 Thread kbuild test robot
tree: https://kernel.googlesource.com/pub/scm/linux/kernel/git/gregkh/driver-core.git debugfs_cleanup head: bf7e05dc3cda0560cd7addb1b5e2ee85ef1b0650 commit: 94fdb9bf360a34742797679406ff310981663ec0 [185/194] omap-iommu: no need to check return value of debugfs_create functions config: arm-al

Re: [PATCH] erofs: promote erofs from staging

2019-07-04 Thread Gao Xiang
On 2019/7/4 10:18, Greg Kroah-Hartman wrote: > On Thu, Jul 04, 2019 at 10:00:53PM +0800, Gao Xiang wrote: >> Hi Greg, >> >> On 2019/7/4 21:50, Greg Kroah-Hartman wrote: >>> On Thu, Jul 04, 2019 at 09:34:13PM +0800, Gao Xiang wrote: EROFS file system has been in Linux-staging for about a

Re: [PATCH] staging: greybus: remove redundant assignment to variable is_empty

2019-07-04 Thread Vaibhav Agarwal
On Thu, Jul 4, 2019 at 7:00 PM Colin King wrote: > > From: Colin Ian King > > The variable is_empty is being initialized with a value that is never > read and it is being updated later with a new value. The > initialization is redundant and can be removed. > > Addresses-Coverity: ("Unused value")

Re: [PATCH] staging: greybus: remove redundant assignment to variable is_empty

2019-07-04 Thread Mark Greer
On Thu, Jul 04, 2019 at 02:30:31PM +0100, Colin King wrote: > From: Colin Ian King > > The variable is_empty is being initialized with a value that is never > read and it is being updated later with a new value. The > initialization is redundant and can be removed. > > Addresses-Coverity: ("Unus

[PATCH 4/7] staging: most: Use spinlock_t instead of struct spinlock

2019-07-04 Thread Sebastian Andrzej Siewior
For spinlocks the type spinlock_t should be used instead of "struct spinlock". Use spinlock_t for spinlock's definition. Cc: Greg Kroah-Hartman Cc: Christian Gromm Cc: de...@driverdev.osuosl.org Signed-off-by: Sebastian Andrzej Siewior --- drivers/staging/most/net/net.c | 3 +-- drivers/s

Re: [PATCH] erofs: promote erofs from staging

2019-07-04 Thread Greg Kroah-Hartman
On Thu, Jul 04, 2019 at 10:00:53PM +0800, Gao Xiang wrote: > Hi Greg, > > On 2019/7/4 21:50, Greg Kroah-Hartman wrote: > > On Thu, Jul 04, 2019 at 09:34:13PM +0800, Gao Xiang wrote: > >> EROFS file system has been in Linux-staging for about a year. > >> It has been proved to be stable enough to mo

Re: [PATCH] erofs: promote erofs from staging

2019-07-04 Thread Gao Xiang
Hi Greg, On 2019/7/4 21:50, Greg Kroah-Hartman wrote: > On Thu, Jul 04, 2019 at 09:34:13PM +0800, Gao Xiang wrote: >> EROFS file system has been in Linux-staging for about a year. >> It has been proved to be stable enough to move out of staging >> by 10+ millions of HUAWEI Android mobile phones on

Re: [PATCH] erofs: promote erofs from staging

2019-07-04 Thread Greg Kroah-Hartman
On Thu, Jul 04, 2019 at 09:34:13PM +0800, Gao Xiang wrote: > EROFS file system has been in Linux-staging for about a year. > It has been proved to be stable enough to move out of staging > by 10+ millions of HUAWEI Android mobile phones on the market > from EMUI 9.0.1, and it was promoted as one of

[PATCH] erofs: promote erofs from staging

2019-07-04 Thread Gao Xiang
EROFS file system has been in Linux-staging for about a year. It has been proved to be stable enough to move out of staging by 10+ millions of HUAWEI Android mobile phones on the market from EMUI 9.0.1, and it was promoted as one of the key features of EMUI 9.1 [1], including P30(pro). EROFS is a

[PATCH] staging: greybus: remove redundant assignment to variable is_empty

2019-07-04 Thread Colin King
From: Colin Ian King The variable is_empty is being initialized with a value that is never read and it is being updated later with a new value. The initialization is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King --- drivers/staging/greybus/aud

[driver-core:debugfs_cleanup 187/193] drivers/iommu/omap-iommu-debug.c:264:4: error: void value not ignored as it ought to be

2019-07-04 Thread kbuild test robot
tree: https://kernel.googlesource.com/pub/scm/linux/kernel/git/gregkh/driver-core.git debugfs_cleanup head: e647f5cb848a5cb522516fd5ca67d89d6b12bdb2 commit: 7fb9d02c8360513538f1de583da9174490553654 [187/193] debugfs: remove return value of debugfs_create_u32() config: arm-allmodconfig (attac

Re: [PATCH RESEND v3] staging: erofs: remove unsupported ->datamode check in fill_inline_data()

2019-07-04 Thread Gao Xiang
On 2019/7/4 18:02, Yue Hu wrote: > On Thu, 4 Jul 2019 07:26:49 +0200 > Greg KH wrote: > >> On Thu, Jul 04, 2019 at 09:59:03AM +0800, Yue Hu wrote: >>> On Wed, 3 Jul 2019 18:20:38 +0200 >>> Greg KH wrote: >>> On Tue, Jul 02, 2019 at 10:56:01AM +0800, Yue Hu wrote: > From: Yue Hu

Re: [PATCH RESEND v3] staging: erofs: remove unsupported ->datamode check in fill_inline_data()

2019-07-04 Thread Yue Hu
On Thu, 4 Jul 2019 07:26:49 +0200 Greg KH wrote: > On Thu, Jul 04, 2019 at 09:59:03AM +0800, Yue Hu wrote: > > On Wed, 3 Jul 2019 18:20:38 +0200 > > Greg KH wrote: > > > > > On Tue, Jul 02, 2019 at 10:56:01AM +0800, Yue Hu wrote: > > > > From: Yue Hu > > > > > > > > Already check if ->dat