Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1510512
| From | kbuild test robot <lkp@intel.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] drivers/platform/x86: fix semicolon.cocci warnings |
| Date | 2016-10-27 19:30 +0200 |
| Message-ID | <swWF3-4Rj-13@gated-at.bofh.it> (permalink) |
| References | <swWF3-4Rj-15@gated-at.bofh.it> <swTnP-2Bn-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
drivers/platform/x86/mlx-platform.c:219:2-3: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
CC: Vadim Pasternak <vadimp@mellanox.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---
mlx-platform.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/platform/x86/mlx-platform.c
+++ b/drivers/platform/x86/mlx-platform.c
@@ -216,7 +216,7 @@ static int __init mlxplat_init(void)
if (IS_ERR(priv->pdev_i2c)) {
err = PTR_ERR(priv->pdev_i2c);
goto fail_alloc;
- };
+ }
for (i = 0; i < ARRAY_SIZE(mlxplat_mux_data); i++) {
priv->pdev_mux[i] = platform_device_register_resndata(
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[patch v1 1/2] drivers/platform/x86: move module mlx-platform from arch/x86 to drivers/platform/x86 vadimp@mellanox.com - 2016-10-27 16:50 +0200
[PATCH] drivers/platform/x86: fix semicolon.cocci warnings kbuild test robot <lkp@intel.com> - 2016-10-27 19:30 +0200
RE: [PATCH] drivers/platform/x86: fix semicolon.cocci warnings Vadim Pasternak <vadimp@mellanox.com> - 2016-10-27 20:40 +0200
Re: [patch v1 1/2] drivers/platform/x86: move module mlx-platform from arch/x86 to drivers/platform/x86 kbuild test robot <lkp@intel.com> - 2016-10-27 19:30 +0200
csiph-web