Commit 2e1b7d0c authored by Sudip Mukherjee's avatar Sudip Mukherjee Committed by Felipe Balbi

usb: gadget: amd5536udc: use WARN_ON

Use WARN_ON() instead of halting the kernel with BUG_ON() and also fix
the checkpatch warning.
Signed-off-by: default avatarSudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 580693bb
...@@ -3127,7 +3127,8 @@ static void udc_pci_remove(struct pci_dev *pdev) ...@@ -3127,7 +3127,8 @@ static void udc_pci_remove(struct pci_dev *pdev)
usb_del_gadget_udc(&udc->gadget); usb_del_gadget_udc(&udc->gadget);
/* gadget driver must not be registered */ /* gadget driver must not be registered */
BUG_ON(dev->driver != NULL); if (WARN_ON(dev->driver))
return;
/* dma pool cleanup */ /* dma pool cleanup */
if (dev->data_requests) if (dev->data_requests)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment