xhci: Add completion code to the debug ouput of unhandled transfer events
[deliverable/linux.git] / drivers / Makefile
... / ...
CommitLineData
1#
2# Makefile for the Linux kernel device drivers.
3#
4# 15 Sep 2000, Christoph Hellwig <hch@infradead.org>
5# Rewritten to use lists instead of if-statements.
6#
7
8obj-y += irqchip/
9obj-y += bus/
10
11obj-$(CONFIG_GENERIC_PHY) += phy/
12
13# GPIO must come after pinctrl as gpios may need to mux pins etc
14obj-y += pinctrl/
15obj-y += gpio/
16obj-y += pwm/
17obj-$(CONFIG_PCI) += pci/
18obj-$(CONFIG_PARISC) += parisc/
19obj-$(CONFIG_RAPIDIO) += rapidio/
20obj-y += video/
21obj-y += idle/
22
23# IPMI must come before ACPI in order to provide IPMI opregion support
24obj-$(CONFIG_IPMI_HANDLER) += char/ipmi/
25
26obj-$(CONFIG_ACPI) += acpi/
27obj-$(CONFIG_SFI) += sfi/
28# PnP must come after ACPI since it will eventually need to check if acpi
29# was used and do nothing if so
30obj-$(CONFIG_PNP) += pnp/
31obj-y += amba/
32# Many drivers will want to use DMA so this has to be made available
33# really early.
34obj-$(CONFIG_DMADEVICES) += dma/
35
36# SOC specific infrastructure drivers.
37obj-y += soc/
38
39obj-$(CONFIG_VIRTIO) += virtio/
40obj-$(CONFIG_XEN) += xen/
41
42# regulators early, since some subsystems rely on them to initialize
43obj-$(CONFIG_REGULATOR) += regulator/
44
45# reset controllers early, since gpu drivers might rely on them to initialize
46obj-$(CONFIG_RESET_CONTROLLER) += reset/
47
48# tty/ comes before char/ so that the VT console is the boot-time
49# default.
50obj-y += tty/
51obj-y += char/
52
53# gpu/ comes after char for AGP vs DRM startup
54obj-y += gpu/
55
56obj-$(CONFIG_CONNECTOR) += connector/
57
58# i810fb and intelfb depend on char/agp/
59obj-$(CONFIG_FB_I810) += video/fbdev/i810/
60obj-$(CONFIG_FB_INTEL) += video/fbdev/intelfb/
61
62obj-$(CONFIG_PARPORT) += parport/
63obj-y += base/ block/ misc/ mfd/ nfc/
64obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf/
65obj-$(CONFIG_NUBUS) += nubus/
66obj-y += macintosh/
67obj-$(CONFIG_IDE) += ide/
68obj-$(CONFIG_SCSI) += scsi/
69obj-$(CONFIG_ATA) += ata/
70obj-$(CONFIG_TARGET_CORE) += target/
71obj-$(CONFIG_MTD) += mtd/
72obj-$(CONFIG_SPI) += spi/
73obj-$(CONFIG_SPMI) += spmi/
74obj-y += hsi/
75obj-y += net/
76obj-$(CONFIG_ATM) += atm/
77obj-$(CONFIG_FUSION) += message/
78obj-y += firewire/
79obj-$(CONFIG_UIO) += uio/
80obj-$(CONFIG_VFIO) += vfio/
81obj-y += cdrom/
82obj-y += auxdisplay/
83obj-$(CONFIG_PCCARD) += pcmcia/
84obj-$(CONFIG_DIO) += dio/
85obj-$(CONFIG_SBUS) += sbus/
86obj-$(CONFIG_ZORRO) += zorro/
87obj-$(CONFIG_ATA_OVER_ETH) += block/aoe/
88obj-$(CONFIG_PARIDE) += block/paride/
89obj-$(CONFIG_TC) += tc/
90obj-$(CONFIG_UWB) += uwb/
91obj-$(CONFIG_USB_PHY) += usb/
92obj-$(CONFIG_USB) += usb/
93obj-$(CONFIG_PCI) += usb/
94obj-$(CONFIG_USB_GADGET) += usb/
95obj-$(CONFIG_SERIO) += input/serio/
96obj-$(CONFIG_GAMEPORT) += input/gameport/
97obj-$(CONFIG_INPUT) += input/
98obj-$(CONFIG_I2O) += message/
99obj-$(CONFIG_RTC_LIB) += rtc/
100obj-y += i2c/ media/
101obj-$(CONFIG_PPS) += pps/
102obj-$(CONFIG_PTP_1588_CLOCK) += ptp/
103obj-$(CONFIG_W1) += w1/
104obj-$(CONFIG_POWER_SUPPLY) += power/
105obj-$(CONFIG_HWMON) += hwmon/
106obj-$(CONFIG_THERMAL) += thermal/
107obj-$(CONFIG_WATCHDOG) += watchdog/
108obj-$(CONFIG_MD) += md/
109obj-$(CONFIG_BT) += bluetooth/
110obj-$(CONFIG_ACCESSIBILITY) += accessibility/
111obj-$(CONFIG_ISDN) += isdn/
112obj-$(CONFIG_EDAC) += edac/
113obj-$(CONFIG_EISA) += eisa/
114obj-y += lguest/
115obj-$(CONFIG_CPU_FREQ) += cpufreq/
116obj-$(CONFIG_CPU_IDLE) += cpuidle/
117obj-y += mmc/
118obj-$(CONFIG_MEMSTICK) += memstick/
119obj-y += leds/
120obj-$(CONFIG_INFINIBAND) += infiniband/
121obj-$(CONFIG_SGI_SN) += sn/
122obj-y += firmware/
123obj-$(CONFIG_CRYPTO) += crypto/
124obj-$(CONFIG_SUPERH) += sh/
125obj-$(CONFIG_ARCH_SHMOBILE) += sh/
126ifndef CONFIG_ARCH_USES_GETTIMEOFFSET
127obj-y += clocksource/
128endif
129obj-$(CONFIG_DCA) += dca/
130obj-$(CONFIG_HID) += hid/
131obj-$(CONFIG_PPC_PS3) += ps3/
132obj-$(CONFIG_OF) += of/
133obj-$(CONFIG_SSB) += ssb/
134obj-$(CONFIG_BCMA) += bcma/
135obj-$(CONFIG_VHOST_RING) += vhost/
136obj-$(CONFIG_VLYNQ) += vlynq/
137obj-$(CONFIG_STAGING) += staging/
138obj-y += platform/
139#common clk code
140obj-y += clk/
141
142obj-$(CONFIG_MAILBOX) += mailbox/
143obj-$(CONFIG_HWSPINLOCK) += hwspinlock/
144obj-$(CONFIG_IOMMU_SUPPORT) += iommu/
145obj-$(CONFIG_REMOTEPROC) += remoteproc/
146obj-$(CONFIG_RPMSG) += rpmsg/
147
148# Virtualization drivers
149obj-$(CONFIG_VIRT_DRIVERS) += virt/
150obj-$(CONFIG_HYPERV) += hv/
151
152obj-$(CONFIG_PM_DEVFREQ) += devfreq/
153obj-$(CONFIG_EXTCON) += extcon/
154obj-$(CONFIG_MEMORY) += memory/
155obj-$(CONFIG_IIO) += iio/
156obj-$(CONFIG_VME_BUS) += vme/
157obj-$(CONFIG_IPACK_BUS) += ipack/
158obj-$(CONFIG_NTB) += ntb/
159obj-$(CONFIG_FMC) += fmc/
160obj-$(CONFIG_POWERCAP) += powercap/
161obj-$(CONFIG_MCB) += mcb/
162obj-$(CONFIG_RAS) += ras/
163obj-$(CONFIG_THUNDERBOLT) += thunderbolt/
164obj-$(CONFIG_CORESIGHT) += coresight/
165obj-$(CONFIG_ANDROID) += android/
This page took 0.024633 seconds and 5 git commands to generate.