USB: core: Codestyle fix in urb.c

Delete braces around single statement block suggested by checkpatch.pl

Signed-off-by: Jonas Hesselmann <jonas.hesselmann@hotmail.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Jonas Hesselmann 2015-10-25 19:28:58 +01:00 коммит произвёл Greg Kroah-Hartman
Родитель aa5b477db5
Коммит ae416ba4e9
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -129,9 +129,8 @@ void usb_anchor_urb(struct urb *urb, struct usb_anchor *anchor)
list_add_tail(&urb->anchor_list, &anchor->urb_list);
urb->anchor = anchor;
if (unlikely(anchor->poisoned)) {
if (unlikely(anchor->poisoned))
atomic_inc(&urb->reject);
}
spin_unlock_irqrestore(&anchor->lock, flags);
}