浏览代码

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>
Kris Borer 10 年之前
父节点
当前提交
79a02744bc
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      drivers/usb/core/driver.c

+ 1 - 0
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);