From: kbuild test robot <lkp@intel.com>
To: Mario Limonciello <mario.limonciello@dell.com>
Cc: kbuild-all@01.org, dvhart@infradead.org,
Andy Shevchenko <andy.shevchenko@gmail.com>,
LKML <linux-kernel@vger.kernel.org>,
platform-driver-x86@vger.kernel.org,
Andy Lutomirski <luto@kernel.org>,
quasisec@google.com, pali.rohar@gmail.com, rjw@rjwysocki.net,
mjg59@google.com, hch@lst.de, Greg KH <greg@kroah.com>,
Alan Cox <gnomes@lxorguk.ukuu.org.uk>,
Mario Limonciello <mario.limonciello@dell.com>
Subject: [PATCH] platform/x86: dell-smbios: fix semicolon.cocci warnings
Date: Tue, 17 Oct 2017 12:14:08 +0800 [thread overview]
Message-ID: <20171017041408.GA78257@lkp-sb05> (raw)
In-Reply-To: <90a5cf6c25c99cf8937b8b1d6109817e9dc736a0.1507958847.git.mario.limonciello@dell.com>
drivers/platform/x86/dell-smbios.c:108:2-3: Unneeded semicolon
drivers/platform/x86/dell-smbios.c:87:2-3: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Fixes: 79480699ede0 ("platform/x86: dell-smbios: Introduce dispatcher for SMM calls")
CC: Mario Limonciello <mario.limonciello@dell.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---
dell-smbios.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- a/drivers/platform/x86/dell-smbios.c
+++ b/drivers/platform/x86/dell-smbios.c
@@ -84,7 +84,7 @@ void dell_smbios_unregister_device(struc
put_device(d);
break;
}
- };
+ }
mutex_unlock(&smbios_mutex);
dev_dbg(d, "Remove device: %s\n", d->driver->name);
}
@@ -105,7 +105,7 @@ int dell_smbios_call(struct calling_inte
call_fn = priv->call_fn;
selected_dev = priv->device;
}
- };
+ }
if (!selected_dev) {
ret = -ENODEV;
next prev parent reply other threads:[~2017-10-17 4:15 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-14 5:32 [PATCH v8 00/15] Introduce support for Dell SMBIOS over WMI Mario Limonciello
2017-10-14 5:32 ` [PATCH v8 01/15] platform/x86: wmi: Add new method wmidev_evaluate_method Mario Limonciello
2017-10-14 5:32 ` [PATCH v8 02/15] platform/x86: dell-wmi: increase severity of some failures Mario Limonciello
2017-10-14 5:32 ` [PATCH v8 03/15] platform/x86: dell-wmi: clean up wmi descriptor check Mario Limonciello
2017-10-14 5:32 ` [PATCH v8 04/15] platform/x86: dell-wmi: allow 32k return size in the descriptor Mario Limonciello
2017-10-14 5:32 ` [PATCH v8 05/15] platform/x86: dell-wmi-descriptor: split WMI descriptor into it's own driver Mario Limonciello
2017-10-14 5:32 ` [PATCH v8 06/15] platform/x86: wmi: Don't allow drivers to get each other's GUIDs Mario Limonciello
2017-10-14 5:32 ` [PATCH v8 07/15] platform/x86: dell-smbios: only run if proper oem string is detected Mario Limonciello
2017-10-14 5:32 ` [PATCH v8 08/15] platform/x86: dell-smbios: Add a sysfs interface for SMBIOS tokens Mario Limonciello
2017-10-17 6:37 ` kbuild test robot
2017-10-14 5:32 ` [PATCH v8 09/15] platform/x86: dell-smbios: Introduce dispatcher for SMM calls Mario Limonciello
2017-10-17 3:49 ` kbuild test robot
2017-10-17 4:14 ` kbuild test robot
2017-10-17 4:14 ` kbuild test robot [this message]
2017-10-17 4:20 ` kbuild test robot
2017-10-14 5:32 ` [PATCH v8 10/15] platform/x86: dell-smbios-wmi: Add new WMI dispatcher driver Mario Limonciello
2017-10-14 5:32 ` [PATCH v8 11/15] platform/x86: dell-smbios-smm: test for WSMT Mario Limonciello
2017-10-14 5:32 ` [PATCH v8 12/15] platform/x86: dell-smbios: Add filtering support Mario Limonciello
2017-10-17 4:11 ` kbuild test robot
2017-10-14 5:32 ` [PATCH v8 13/15] platform/x86: wmi: Add sysfs attribute for required_buffer_size Mario Limonciello
2017-10-14 5:32 ` [PATCH v8 14/15] platform/x86: wmi: create userspace interface for drivers Mario Limonciello
2017-10-17 3:58 ` kbuild test robot
2017-10-14 5:32 ` [PATCH v8 15/15] platform/x86: dell-smbios-wmi: introduce userspace interface Mario Limonciello
2017-10-16 2:45 ` [PATCH v8 00/15] Introduce support for Dell SMBIOS over WMI Edward O'Callaghan
2017-10-16 7:33 ` Pali Rohár
2017-10-16 13:23 ` Mario.Limonciello
2017-10-16 13:37 ` Pali Rohár
2017-10-16 13:48 ` Mario.Limonciello
2017-10-16 21:56 ` Darren Hart
2017-10-17 14:22 ` Mario.Limonciello
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171017041408.GA78257@lkp-sb05 \
--to=lkp@intel.com \
--cc=andy.shevchenko@gmail.com \
--cc=dvhart@infradead.org \
--cc=gnomes@lxorguk.ukuu.org.uk \
--cc=greg@kroah.com \
--cc=hch@lst.de \
--cc=kbuild-all@01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@kernel.org \
--cc=mario.limonciello@dell.com \
--cc=mjg59@google.com \
--cc=pali.rohar@gmail.com \
--cc=platform-driver-x86@vger.kernel.org \
--cc=quasisec@google.com \
--cc=rjw@rjwysocki.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox