[PATCH] video: fbdev: Fix Warning comparing pointer to 0 reported by coccicheck

2019-06-02 Thread Shobhit Kukreti
drivers/video/fbdev/controlfb.c: WARNING comparing pointer to 0 drivers/video/fbdev/controlfb.c: WARNING comparing pointer to 0 drivers/video/fbdev/controlfb.c: WARNING comparing pointer to 0 Signed-off-by: Shobhit Kukreti --- drivers/video/fbdev/controlfb.c | 8 1 file changed, 4

[PATCH] video: backlight: Replace old GPIO APIs with GPIO Consumer APIs for sky81542-backlight driver

2019-06-11 Thread Shobhit Kukreti
linux/of_gpio.h". Signed-off-by: Shobhit Kukreti --- drivers/video/backlight/sky81452-backlight.c | 24 include/linux/platform_data/sky81452-backlight.h | 4 +++- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/drivers/video/backlight/sky8145

Re: [PATCH] video: backlight: Replace old GPIO APIs with GPIO Consumer APIs for sky81542-backlight driver

2019-06-12 Thread Shobhit Kukreti
On Wed, Jun 12, 2019 at 11:26:15AM +0100, Daniel Thompson wrote: > Hi Shobhit > > Thanks for the patch. Feedback below... Hi Daneil, You provided some valuable feedback. Thank you for your time and effort. > > > On Tue, Jun 11, 2019 at 09:32:32PM -0700, Sho

[PATCH] staging: fbtft: Fix checkpatch ERROR: space prohibited before that close parenthesis ')'

2019-06-14 Thread Shobhit Kukreti
Cleaned up code to resolve the checkpatch error ERROR: space prohibited before that close parenthesis ')' from the file: fbtft/fbtft-bus.c Signed-off-by: Shobhit Kukreti --- drivers/staging/fbtft/fbtft-bus.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [PATCH] staging: fbtft: Fix checkpatch ERROR: space prohibited before that close parenthesis ')'

2019-06-16 Thread Shobhit Kukreti
On Sat, Jun 15, 2019 at 07:33:02PM +0200, Greg Kroah-Hartman wrote: > On Thu, Jun 13, 2019 at 07:32:28PM -0700, Shobhit Kukreti wrote: > > Cleaned up code to resolve the checkpatch error > > ERROR: space prohibited before that close parenthesis ')' > > from the f

[PATCH] video: radeon.h Fix Shifting signed 32 bit value by 31 bits problem

2019-07-06 Thread Shobhit Kukreti
d behavior. Signed-off-by: Shobhit Kukreti --- include/video/radeon.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/video/radeon.h b/include/video/radeon.h index 005eae1..cb0a5f6 100644 --- a/include/video/radeon.h +++ b/include/video/radeon.h @@ -531,7 +531,7 @

[PATCH v2] video: radeon.h Fix Shifting signed 32 bit value by 31 bits problem

2019-07-21 Thread Shobhit Kukreti
d behavior. Signed-off-by: Shobhit Kukreti --- Changes in v2: Replace bit shift operations with BIT() macro include/video/radeon.h | 338 - 1 file changed, 169 insertions(+), 169 deletions(-) diff --git a/include/video/radeon.h b/inc