diff options
author | John Youn | 2016-11-03 17:55:50 -0700 |
---|---|---|
committer | Felipe Balbi | 2016-11-18 13:54:10 +0200 |
commit | 323230ef4ef17512007c22898b008e9fb87b372e (patch) | |
tree | a8bc591a30bd808fddf2c182f790dfc08f3794cd /drivers/usb/dwc2/Makefile | |
parent | d4c0cf2d902c68e65ff18f1a3e3334325d4fdd89 (diff) |
usb: dwc2: Add params.c file
Add a params.c file and move all driver parameter code there, including
all the static parameter definitions.
Signed-off-by: John Youn <johnyoun@synopsys.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Diffstat (limited to 'drivers/usb/dwc2/Makefile')
-rw-r--r-- | drivers/usb/dwc2/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/dwc2/Makefile b/drivers/usb/dwc2/Makefile index 50fdaace1e73..b9237e1e45d0 100644 --- a/drivers/usb/dwc2/Makefile +++ b/drivers/usb/dwc2/Makefile @@ -3,6 +3,7 @@ ccflags-$(CONFIG_USB_DWC2_VERBOSE) += -DVERBOSE_DEBUG obj-$(CONFIG_USB_DWC2) += dwc2.o dwc2-y := core.o core_intr.o platform.o +dwc2-y += params.o ifneq ($(filter y,$(CONFIG_USB_DWC2_HOST) $(CONFIG_USB_DWC2_DUAL_ROLE)),) dwc2-y += hcd.o hcd_intr.o |