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