Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 16 lines 351 B view raw
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