1# SPDX-License-Identifier: GPL-2.0
2#
3# for Renesas USB
4#
5
6obj-$(CONFIG_USB_RENESAS_USBHS)	+= renesas_usbhs.o
7
8renesas_usbhs-y			:= common.o mod.o pipe.o fifo.o rcar2.o rcar3.o rza.o rza2.o
9
10ifneq ($(CONFIG_USB_RENESAS_USBHS_HCD),)
11	renesas_usbhs-y		+= mod_host.o
12endif
13
14ifneq ($(CONFIG_USB_RENESAS_USBHS_UDC),)
15	renesas_usbhs-y		+= mod_gadget.o
16endif
17