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>
This commit is contained in:
parent
52721d9d33
commit
79a02744bc
|
@ -160,6 +160,7 @@ static ssize_t remove_id_store(struct device_driver *driver, const char *buf,
|
||||||
spin_lock(&usb_driver->dynids.lock);
|
spin_lock(&usb_driver->dynids.lock);
|
||||||
list_for_each_entry_safe(dynid, n, &usb_driver->dynids.list, node) {
|
list_for_each_entry_safe(dynid, n, &usb_driver->dynids.list, node) {
|
||||||
struct usb_device_id *id = &dynid->id;
|
struct usb_device_id *id = &dynid->id;
|
||||||
|
|
||||||
if ((id->idVendor == idVendor) &&
|
if ((id->idVendor == idVendor) &&
|
||||||
(id->idProduct == idProduct)) {
|
(id->idProduct == idProduct)) {
|
||||||
list_del(&dynid->node);
|
list_del(&dynid->node);
|
||||||
|
|
Loading…
Reference in New Issue