Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1598648 > unrolled thread
| Started by | kbuild test robot <fengguang.wu@intel.com> |
|---|---|
| First post | 2017-03-12 15:50 +0100 |
| Last post | 2017-03-12 15:50 +0100 |
| Articles | 2 — 1 participant |
Back to article view | Back to linux.kernel
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
| From | kbuild test robot <fengguang.wu@intel.com> |
|---|---|
| Date | 2017-03-12 15:50 +0100 |
| Subject | drivers/gpu/drm/tinydrm/mipi-dbi.c:657:2-3: Unneeded semicolon |
| Message-ID | <tkcYO-2Pm-15@gated-at.bofh.it> |
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 106e4da60209b508894956b6adf4688f84c1766d commit: 1f47e6cbf58d10392a2158b0e33ef72ad681e40f drm/tinydrm: Add support for Multi-Inno MI0283QT display date: 3 weeks ago coccinelle warnings: (new ones prefixed by >>) >> drivers/gpu/drm/tinydrm/mipi-dbi.c:657:2-3: Unneeded semicolon drivers/gpu/drm/tinydrm/mipi-dbi.c:593:2-3: Unneeded semicolon Please review and possibly fold the followup patch. --- 0-DAY kernel test infrastructure Open Source Technology Center https://lists.01.org/pipermail/kbuild-all Intel Corporation
[toc] | [next] | [standalone]
| From | kbuild test robot <fengguang.wu@intel.com> |
|---|---|
| Date | 2017-03-12 15:50 +0100 |
| Subject | [PATCH] drm/tinydrm: fix semicolon.cocci warnings |
| Message-ID | <tkcYO-2Pm-23@gated-at.bofh.it> |
| In reply to | #1598648 |
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; }
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web