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