Commit 72688dc9 authored by Sasha Levin's avatar Sasha Levin Committed by Greg Kroah-Hartman
Browse files

usb: gadget: dummy_hcd: fix build when BUG is not set



Use WARN_ON() instead of __WARN, which also means we won't use any
internal macros.

Signed-off-by: default avatarSasha Levin <levinsasha928@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fdf6e639
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -598,7 +598,7 @@ static void dummy_free_request(struct usb_ep *_ep, struct usb_request *_req)
	struct dummy_request	*req;

	if (!_ep || !_req) {
		__WARN();
		WARN_ON(1);
		return;
	}