dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drm/meson: Remove unneeded semicolon
@ 2020-04-24  7:49 Zheng Bin
  2020-04-28  9:17 ` Neil Armstrong
  2020-04-28  9:18 ` Neil Armstrong
  0 siblings, 2 replies; 3+ messages in thread
From: Zheng Bin @ 2020-04-24  7:49 UTC (permalink / raw)
  To: narmstrong, khilman, airlied, daniel, dri-devel,
	linux-arm-kernel, linux-amlogic
  Cc: zhengbin13

Fixes coccicheck warning:

drivers/gpu/drm/meson/meson_plane.c:226:3-4: Unneeded semicolon

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
---
 drivers/gpu/drm/meson/meson_plane.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/meson/meson_plane.c b/drivers/gpu/drm/meson/meson_plane.c
index d5cbc47835bf..35338ed18209 100644
--- a/drivers/gpu/drm/meson/meson_plane.c
+++ b/drivers/gpu/drm/meson/meson_plane.c
@@ -223,7 +223,7 @@ static void meson_plane_atomic_update(struct drm_plane *plane,
 			priv->viu.osd1_blk0_cfg[0] |= OSD_BLK_MODE_16 |
 						OSD_COLOR_MATRIX_16_RGB565;
 			break;
-		};
+		}
 	}

 	switch (fb->format->format) {
--
2.26.0.106.g9fadedd

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] drm/meson: Remove unneeded semicolon
  2020-04-24  7:49 [PATCH] drm/meson: Remove unneeded semicolon Zheng Bin
@ 2020-04-28  9:17 ` Neil Armstrong
  2020-04-28  9:18 ` Neil Armstrong
  1 sibling, 0 replies; 3+ messages in thread
From: Neil Armstrong @ 2020-04-28  9:17 UTC (permalink / raw)
  To: Zheng Bin, khilman, airlied, daniel, dri-devel, linux-arm-kernel,
	linux-amlogic

On 24/04/2020 09:49, Zheng Bin wrote:
> Fixes coccicheck warning:
> 
> drivers/gpu/drm/meson/meson_plane.c:226:3-4: Unneeded semicolon
> 
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
> ---
>  drivers/gpu/drm/meson/meson_plane.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/meson/meson_plane.c b/drivers/gpu/drm/meson/meson_plane.c
> index d5cbc47835bf..35338ed18209 100644
> --- a/drivers/gpu/drm/meson/meson_plane.c
> +++ b/drivers/gpu/drm/meson/meson_plane.c
> @@ -223,7 +223,7 @@ static void meson_plane_atomic_update(struct drm_plane *plane,
>  			priv->viu.osd1_blk0_cfg[0] |= OSD_BLK_MODE_16 |
>  						OSD_COLOR_MATRIX_16_RGB565;
>  			break;
> -		};
> +		}
>  	}
> 
>  	switch (fb->format->format) {
> --
> 2.26.0.106.g9fadedd
> 

Reviewed-by: Neil Armstrong <narmstrong@baylibre.com>
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] drm/meson: Remove unneeded semicolon
  2020-04-24  7:49 [PATCH] drm/meson: Remove unneeded semicolon Zheng Bin
  2020-04-28  9:17 ` Neil Armstrong
@ 2020-04-28  9:18 ` Neil Armstrong
  1 sibling, 0 replies; 3+ messages in thread
From: Neil Armstrong @ 2020-04-28  9:18 UTC (permalink / raw)
  To: Zheng Bin, khilman, airlied, daniel, dri-devel, linux-arm-kernel,
	linux-amlogic

On 24/04/2020 09:49, Zheng Bin wrote:
> Fixes coccicheck warning:
> 
> drivers/gpu/drm/meson/meson_plane.c:226:3-4: Unneeded semicolon
> 
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
> ---
>  drivers/gpu/drm/meson/meson_plane.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/meson/meson_plane.c b/drivers/gpu/drm/meson/meson_plane.c
> index d5cbc47835bf..35338ed18209 100644
> --- a/drivers/gpu/drm/meson/meson_plane.c
> +++ b/drivers/gpu/drm/meson/meson_plane.c
> @@ -223,7 +223,7 @@ static void meson_plane_atomic_update(struct drm_plane *plane,
>  			priv->viu.osd1_blk0_cfg[0] |= OSD_BLK_MODE_16 |
>  						OSD_COLOR_MATRIX_16_RGB565;
>  			break;
> -		};
> +		}
>  	}
> 
>  	switch (fb->format->format) {
> --
> 2.26.0.106.g9fadedd
> 

Applied to drm-misc-next
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-04-28  9:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-24  7:49 [PATCH] drm/meson: Remove unneeded semicolon Zheng Bin
2020-04-28  9:17 ` Neil Armstrong
2020-04-28  9:18 ` Neil Armstrong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).