Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f2984a33 authored by Mike Frysinger's avatar Mike Frysinger Committed by Greg Kroah-Hartman
Browse files

USB: gadget: fix Blackfin builds after gadget cleansing



The recent change to clean out dead gadget drivers (90f79768)
missed the call to gadget_is_musbhsfc() behind CONFIG_BLACKFIN.  This
causes Blackfin gadget builds to fail since the function no longer
exists anywhere.

Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 872f8b42
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -266,7 +266,7 @@ struct usb_ep * __init usb_ep_autoconfig (
		}

#ifdef CONFIG_BLACKFIN
	} else if (gadget_is_musbhsfc(gadget) || gadget_is_musbhdrc(gadget)) {
	} else if (gadget_is_musbhdrc(gadget)) {
		if ((USB_ENDPOINT_XFER_BULK == type) ||
		    (USB_ENDPOINT_XFER_ISOC == type)) {
			if (USB_DIR_IN & desc->bEndpointAddress)