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