Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1598650
| From | kbuild test robot <fengguang.wu@intel.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] drm/tinydrm: fix semicolon.cocci warnings |
| Date | 2017-03-12 15:50 +0100 |
| Message-ID | <tkcYO-2Pm-23@gated-at.bofh.it> (permalink) |
| References | <tkcYO-2Pm-15@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
drivers/gpu/drm/tinydrm/mipi-dbi.c:657:2-3: Unneeded semicolon drivers/gpu/drm/tinydrm/mipi-dbi.c:593:2-3: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> --- mipi-dbi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/drivers/gpu/drm/tinydrm/mipi-dbi.c +++ b/drivers/gpu/drm/tinydrm/mipi-dbi.c @@ -590,7 +590,7 @@ static int mipi_dbi_spi1e_transfer(struc ret = spi_sync(spi, &m); if (ret) return ret; - }; + } return 0; } @@ -654,7 +654,7 @@ static int mipi_dbi_spi1_transfer(struct ret = spi_sync(spi, &m); if (ret) return ret; - }; + } return 0; }
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
drivers/gpu/drm/tinydrm/mipi-dbi.c:657:2-3: Unneeded semicolon kbuild test robot <fengguang.wu@intel.com> - 2017-03-12 15:50 +0100 [PATCH] drm/tinydrm: fix semicolon.cocci warnings kbuild test robot <fengguang.wu@intel.com> - 2017-03-12 15:50 +0100
csiph-web