[PATCH v2] drm/bridge: Remove duplicate header

2019-05-16 Thread Sabyasachi Gupta
Remove duplicate header which is included twice Signed-off-by: Sabyasachi Gupta --- v2: rebased the code against drm -next and arranged the headers alphabetically drivers/gpu/drm/bridge/panel.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/gpu/drm/bridge/panel.c

Re: [PATCH] drm/bridge: Remove duplicate header

2019-05-16 Thread Sabyasachi Gupta
On Tue, May 14, 2019 at 1:05 PM Laurent Pinchart wrote: > > Hi Sabyasachi, > > Thank you for the patch. > > On Tue, May 14, 2019 at 01:01:41PM +0530, Sabyasachi Gupta wrote: > > Remove drm/drm_panel.h which is included more than once > > > > Signed-off-by: Sa

[PATCH] drm/bridge: Remove duplicate header

2019-05-14 Thread Sabyasachi Gupta
Remove drm/drm_panel.h which is included more than once Signed-off-by: Sabyasachi Gupta --- drivers/gpu/drm/bridge/panel.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/bridge/panel.c b/drivers/gpu/drm/bridge/panel.c index 7cbaba2..402b318 100644 --- a/drivers/gpu/drm

[PATCH] drm/msm/dpu: Remove duplicate header

2019-05-14 Thread Sabyasachi Gupta
Remove dpu_kms.h which is included more than once Signed-off-by: Sabyasachi Gupta --- drivers/gpu/drm/msm/disp/dpu1/dpu_hw_lm.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_lm.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_lm.c index dbe48e00..d692dee

[PATCH] gpu/drm/virtio/virtgpu_vq.c: Use kmem_cache_zalloc

2018-10-19 Thread Sabyasachi Gupta
Replaced kmem_cache_alloc + memset with kmem_cache_zalloc Signed-off-by: Sabyasachi Gupta --- drivers/gpu/drm/virtio/virtgpu_vq.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/gpu/drm/virtio/virtgpu_vq.c b/drivers/gpu/drm/virtio/virtgpu_vq.c index 020070d