summaryrefslogtreecommitdiff
path: root/drivers/usb/core/driver.c
diff options
context:
space:
mode:
authorKris Borer <kborer@gmail.com>2015-06-16 13:24:53 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-07-22 14:55:21 -0700
commit79a02744bc5a2993d6c5b8dd1a790f7ea12f4e0b (patch)
treed9128ef311faeb9fab304911f17eeae7c1aba0b7 /drivers/usb/core/driver.c
parent52721d9d3334c1cb1f76219a161084094ec634dc (diff)
usb: fix coding style issue
Fixed coding style issue: newline after declaration Signed-off-by: Kris Borer <kborer@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/core/driver.c')
-rw-r--r--drivers/usb/core/driver.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/core/driver.c b/drivers/usb/core/driver.c
index 818369afff63..6b5063e7943f 100644
--- a/drivers/usb/core/driver.c
+++ b/drivers/usb/core/driver.c
@@ -160,6 +160,7 @@ static ssize_t remove_id_store(struct device_driver *driver, const char *buf,
spin_lock(&usb_driver->dynids.lock);
list_for_each_entry_safe(dynid, n, &usb_driver->dynids.list, node) {
struct usb_device_id *id = &dynid->id;
+
if ((id->idVendor == idVendor) &&
(id->idProduct == idProduct)) {
list_del(&dynid->node);