x86: mce: Serialize mce injection
[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
8# GPIO must come after pinctrl as gpios may need to mux pins etc
9obj-y += pinctrl/
10obj-y += gpio/
11obj-y += pwm/
12obj-$(CONFIG_PCI) += pci/
13obj-$(CONFIG_PARISC) += parisc/
14obj-$(CONFIG_RAPIDIO) += rapidio/
15obj-y += video/
16obj-y += idle/
17obj-$(CONFIG_ACPI) += acpi/
18obj-$(CONFIG_SFI) += sfi/
19# PnP must come after ACPI since it will eventually need to check if acpi
20# was used and do nothing if so
21obj-$(CONFIG_PNP) += pnp/
22obj-y += amba/
23# Many drivers will want to use DMA so this has to be made available
24# really early.
25obj-$(CONFIG_DMA_ENGINE) += dma/
26
27obj-$(CONFIG_VIRTIO) += virtio/
28obj-$(CONFIG_XEN) += xen/
29
30# regulators early, since some subsystems rely on them to initialize
31obj-$(CONFIG_REGULATOR) += regulator/
32
33# tty/ comes before char/ so that the VT console is the boot-time
34# default.
35obj-y += tty/
36obj-y += char/
37
38# gpu/ comes after char for AGP vs DRM startup
39obj-y += gpu/
40
41obj-$(CONFIG_CONNECTOR) += connector/
42
43# i810fb and intelfb depend on char/agp/
44obj-$(CONFIG_FB_I810) += video/i810/
45obj-$(CONFIG_FB_INTEL) += video/intelfb/
46
47obj-$(CONFIG_PARPORT) += parport/
48obj-y += base/ block/ misc/ mfd/ nfc/
49obj-$(CONFIG_NUBUS) += nubus/
50obj-y += macintosh/
51obj-$(CONFIG_IDE) += ide/
52obj-$(CONFIG_SCSI) += scsi/
53obj-$(CONFIG_ATA) += ata/
54obj-$(CONFIG_TARGET_CORE) += target/
55obj-$(CONFIG_MTD) += mtd/
56obj-$(CONFIG_SPI) += spi/
57obj-y += hsi/
58obj-y += net/
59obj-$(CONFIG_ATM) += atm/
60obj-$(CONFIG_FUSION) += message/
61obj-y += firewire/
62obj-$(CONFIG_UIO) += uio/
63obj-$(CONFIG_VFIO) += vfio/
64obj-y += cdrom/
65obj-y += auxdisplay/
66obj-$(CONFIG_PCCARD) += pcmcia/
67obj-$(CONFIG_DIO) += dio/
68obj-$(CONFIG_SBUS) += sbus/
69obj-$(CONFIG_ZORRO) += zorro/
70obj-$(CONFIG_MAC) += macintosh/
71obj-$(CONFIG_ATA_OVER_ETH) += block/aoe/
72obj-$(CONFIG_PARIDE) += block/paride/
73obj-$(CONFIG_TC) += tc/
74obj-$(CONFIG_UWB) += uwb/
75obj-$(CONFIG_USB_OTG_UTILS) += usb/
76obj-$(CONFIG_USB) += usb/
77obj-$(CONFIG_PCI) += usb/
78obj-$(CONFIG_USB_GADGET) += usb/
79obj-$(CONFIG_SERIO) += input/serio/
80obj-$(CONFIG_GAMEPORT) += input/gameport/
81obj-$(CONFIG_INPUT) += input/
82obj-$(CONFIG_I2O) += message/
83obj-$(CONFIG_RTC_LIB) += rtc/
84obj-y += i2c/ media/
85obj-$(CONFIG_PPS) += pps/
86obj-$(CONFIG_PTP_1588_CLOCK) += ptp/
87obj-$(CONFIG_W1) += w1/
88obj-$(CONFIG_POWER_SUPPLY) += power/
89obj-$(CONFIG_HWMON) += hwmon/
90obj-$(CONFIG_THERMAL) += thermal/
91obj-$(CONFIG_WATCHDOG) += watchdog/
92obj-$(CONFIG_MD) += md/
93obj-$(CONFIG_BT) += bluetooth/
94obj-$(CONFIG_ACCESSIBILITY) += accessibility/
95obj-$(CONFIG_ISDN) += isdn/
96obj-$(CONFIG_EDAC) += edac/
97obj-$(CONFIG_EISA) += eisa/
98obj-y += lguest/
99obj-$(CONFIG_CPU_FREQ) += cpufreq/
100obj-$(CONFIG_CPU_IDLE) += cpuidle/
101obj-y += mmc/
102obj-$(CONFIG_MEMSTICK) += memstick/
103obj-y += leds/
104obj-$(CONFIG_INFINIBAND) += infiniband/
105obj-$(CONFIG_SGI_SN) += sn/
106obj-y += firmware/
107obj-$(CONFIG_CRYPTO) += crypto/
108obj-$(CONFIG_SUPERH) += sh/
109obj-$(CONFIG_ARCH_SHMOBILE) += sh/
110ifndef CONFIG_ARCH_USES_GETTIMEOFFSET
111obj-y += clocksource/
112endif
113obj-$(CONFIG_DCA) += dca/
114obj-$(CONFIG_HID) += hid/
115obj-$(CONFIG_PPC_PS3) += ps3/
116obj-$(CONFIG_OF) += of/
117obj-$(CONFIG_SSB) += ssb/
118obj-$(CONFIG_BCMA) += bcma/
119obj-$(CONFIG_VHOST_NET) += vhost/
120obj-$(CONFIG_VLYNQ) += vlynq/
121obj-$(CONFIG_STAGING) += staging/
122obj-y += platform/
123obj-y += ieee802154/
124#common clk code
125obj-y += clk/
126
127obj-$(CONFIG_HWSPINLOCK) += hwspinlock/
128obj-$(CONFIG_NFC) += nfc/
129obj-$(CONFIG_IOMMU_SUPPORT) += iommu/
130obj-$(CONFIG_REMOTEPROC) += remoteproc/
131obj-$(CONFIG_RPMSG) += rpmsg/
132
133# Virtualization drivers
134obj-$(CONFIG_VIRT_DRIVERS) += virt/
135obj-$(CONFIG_HYPERV) += hv/
136
137obj-$(CONFIG_PM_DEVFREQ) += devfreq/
138obj-$(CONFIG_EXTCON) += extcon/
139obj-$(CONFIG_MEMORY) += memory/
140obj-$(CONFIG_IIO) += iio/
141obj-$(CONFIG_VME_BUS) += vme/
This page took 0.0246 seconds and 5 git commands to generate.