diff options
| -rw-r--r-- | drivers/usb/gadget/Makefile | 8 | 
1 files changed, 2 insertions, 6 deletions
| diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile index f52d3f450..f13b172a6 100644 --- a/drivers/usb/gadget/Makefile +++ b/drivers/usb/gadget/Makefile @@ -5,12 +5,8 @@  # SPDX-License-Identifier:	GPL-2.0+  # -# if defined(CONFIG_USB_GADGET) || defined(CONFIG_USB_ETHER) -#   Everytime you forget how crufty makefiles can get things like -#   this remind you... -ifneq (,$(CONFIG_USB_GADGET)$(CONFIG_USB_ETHER)) -obj-y += epautoconf.o config.o usbstring.o -endif +obj-$(CONFIG_USB_GADGET) += epautoconf.o config.o usbstring.o +obj-$(CONFIG_USB_ETHER) += epautoconf.o config.o usbstring.o  # new USB gadget layer dependencies  ifdef CONFIG_USB_GADGET |