File tree Expand file tree Collapse file tree 7 files changed +448
-7
lines changed Expand file tree Collapse file tree 7 files changed +448
-7
lines changed Original file line number Diff line number Diff line change @@ -40,17 +40,26 @@ config USB_XHCI_DBGCAP
40
40
config USB_XHCI_PCI
41
41
tristate
42
42
depends on USB_PCI
43
- depends on USB_XHCI_PCI_RENESAS || !USB_XHCI_PCI_RENESAS
44
43
default y
45
44
46
45
config USB_XHCI_PCI_RENESAS
47
- tristate "Support for additional Renesas xHCI controller with firmware"
46
+ bool "Support for Renesas xHCI controllers with firmware"
47
+ depends on USB_XHCI_PCI
48
48
help
49
49
Say 'Y' to enable the support for the Renesas xHCI controller with
50
50
firmware. Make sure you have the firmware for the device and
51
51
installed on your system for this device to work.
52
52
If unsure, say 'N'.
53
53
54
+ config USB_XHCI_PCI_ASMEDIA
55
+ bool "Support for ASMedia xHCI controller with firmware"
56
+ default ARCH_APPLE
57
+ depends on USB_XHCI_PCI
58
+ help
59
+ Say 'Y' to enable support for ASMedia xHCI controllers with
60
+ host-supplied firmware. These are usually present on Apple devices.
61
+ If unsure, say 'N'.
62
+
54
63
config USB_XHCI_PLATFORM
55
64
tristate "Generic xHCI driver for a platform device"
56
65
help
Original file line number Diff line number Diff line change @@ -68,7 +68,9 @@ obj-$(CONFIG_USB_UHCI_HCD) += uhci-hcd.o
68
68
obj-$(CONFIG_USB_FHCI_HCD) += fhci.o
69
69
obj-$(CONFIG_USB_XHCI_HCD) += xhci-hcd.o
70
70
obj-$(CONFIG_USB_XHCI_PCI) += xhci-pci.o
71
- obj-$(CONFIG_USB_XHCI_PCI_RENESAS) += xhci-pci-renesas.o
71
+ xhci-pci-y += xhci-pci-core.o
72
+ xhci-pci-$(CONFIG_USB_XHCI_PCI_RENESAS) += xhci-pci-renesas.o
73
+ xhci-pci-$(CONFIG_USB_XHCI_PCI_ASMEDIA) += xhci-pci-asmedia.o
72
74
obj-$(CONFIG_USB_XHCI_PLATFORM) += xhci-plat-hcd.o
73
75
obj-$(CONFIG_USB_XHCI_HISTB) += xhci-histb.o
74
76
obj-$(CONFIG_USB_XHCI_RCAR) += xhci-rcar-hcd.o
You can’t perform that action at this time.
0 commit comments