Blame view

drivers/Makefile 4.42 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
  #
  # Makefile for the Linux kernel device drivers.
  #
  # 15 Sep 2000, Christoph Hellwig <hch@infradead.org>
  # Rewritten to use lists instead of if-statements.
  #
89214f009   Simon Arlott   ARM: bcm2835: add...
7
  obj-y				+= irqchip/
26a84b3ea   Kishon Vijay Abraham I   drivers: bus: add...
8
  obj-y				+= bus/
89214f009   Simon Arlott   ARM: bcm2835: add...
9

ff7649634   Kishon Vijay Abraham I   drivers: phy: add...
10
  obj-$(CONFIG_GENERIC_PHY)	+= phy/
2744e8afb   Linus Walleij   drivers: create a...
11
12
  # GPIO must come after pinctrl as gpios may need to mux pins etc
  obj-y				+= pinctrl/
7444a72ef   Michael Buesch   gpiolib: allow us...
13
  obj-y				+= gpio/
0c2498f16   Sascha Hauer   pwm: Add PWM fram...
14
  obj-y				+= pwm/
6015d2c4c   Linus Torvalds   Link USB drivers ...
15
  obj-$(CONFIG_PCI)		+= pci/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
  obj-$(CONFIG_PARISC)		+= parisc/
394b701ce   Matt Porter   [PATCH] RapidIO s...
17
  obj-$(CONFIG_RAPIDIO)		+= rapidio/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
18
  obj-y				+= video/
267171726   Len Brown   intel_idle: nativ...
19
  obj-y				+= idle/
061475b65   Matthew Garrett   IPMI: Change link...
20
21
22
  
  # IPMI must come before ACPI in order to provide IPMI opregion support
  obj-$(CONFIG_IPMI_HANDLER)	+= char/ipmi/
888ba6c62   Len Brown   [ACPI] delete CON...
23
  obj-$(CONFIG_ACPI)		+= acpi/
6ae6996a4   Feng Tang   SFI: add platform...
24
  obj-$(CONFIG_SFI)		+= sfi/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
25
26
27
  # PnP must come after ACPI since it will eventually need to check if acpi
  # was used and do nothing if so
  obj-$(CONFIG_PNP)		+= pnp/
87d0bab2c   Hiroshi DOYU   ARM: tegra: Add T...
28
  obj-y				+= amba/
a0eb221a4   Linus Walleij   dmaengine: move l...
29
30
  # Many drivers will want to use DMA so this has to be made available
  # really early.
9a3229939   Philippe De Muyter   powerpc, dma: mov...
31
  obj-$(CONFIG_DMADEVICES)	+= dma/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32

e2dbe06c2   Stijn Tintel   virtio: initializ...
33
  obj-$(CONFIG_VIRTIO)		+= virtio/
ad9a86121   Jeremy Fitzhardinge   xen: Add grant ta...
34
  obj-$(CONFIG_XEN)		+= xen/
9f4dab49e   David Brownell   regulator: init/l...
35
36
  # regulators early, since some subsystems rely on them to initialize
  obj-$(CONFIG_REGULATOR)		+= regulator/
61fc41317   Philipp Zabel   reset: Add reset ...
37
38
  # reset controllers early, since gpu drivers might rely on them to initialize
  obj-$(CONFIG_RESET_CONTROLLER)	+= reset/
ab4382d27   Greg Kroah-Hartman   tty: move drivers...
39
  # tty/ comes before char/ so that the VT console is the boot-time
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40
  # default.
96fd7ce58   Greg Kroah-Hartman   TTY: create drive...
41
  obj-y				+= tty/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42
  obj-y				+= char/
e6b51632b   Dave Airlie   gpu: re-order GPU...
43
44
  # gpu/ comes after char for AGP vs DRM startup
  obj-y				+= gpu/
7672d0b54   Evgeniy Polyakov   [NET]: Add netlin...
45
  obj-$(CONFIG_CONNECTOR)		+= connector/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
46
  # i810fb and intelfb depend on char/agp/
f7018c213   Tomi Valkeinen   video: move fbdev...
47
48
  obj-$(CONFIG_FB_I810)           += video/fbdev/i810/
  obj-$(CONFIG_FB_INTEL)          += video/fbdev/intelfb/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
50
  obj-$(CONFIG_PARPORT)		+= parport/
0329326e8   Matti J. Aaltonen   NFC: Driver for N...
51
  obj-y				+= base/ block/ misc/ mfd/ nfc/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
52
  obj-$(CONFIG_NUBUS)		+= nubus/
45941d048   Soeren Sonnenburg   [PATCH] enable mo...
53
  obj-y				+= macintosh/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
54
  obj-$(CONFIG_IDE)		+= ide/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
55
  obj-$(CONFIG_SCSI)		+= scsi/
c6fd28076   Jeff Garzik   Move libata to dr...
56
  obj-$(CONFIG_ATA)		+= ata/
c66ac9db8   Nicholas Bellinger   [SCSI] target: Ad...
57
  obj-$(CONFIG_TARGET_CORE)	+= target/
9289d4ef0   Sudhakar Rajashekhara   driver/Makefile: ...
58
59
  obj-$(CONFIG_MTD)		+= mtd/
  obj-$(CONFIG_SPI)		+= spi/
5a86bf343   Kenneth Heitke   spmi: Linux drive...
60
  obj-$(CONFIG_SPMI)		+= spmi/
a056ab8c7   Carlos Chinea   HSI: hsi: Introdu...
61
  obj-y				+= hsi/
0c406263f   Arjan van de Ven   ide/net: flip the...
62
63
  obj-y				+= net/
  obj-$(CONFIG_ATM)		+= atm/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
64
  obj-$(CONFIG_FUSION)		+= message/
8702d33aa   Stefan Richter   firewire: nosy: f...
65
  obj-y				+= firewire/
beafc54c4   Hans J. Koch   UIO: Add the User...
66
  obj-$(CONFIG_UIO)		+= uio/
cba3345cc   Alex Williamson   vfio: VFIO core
67
  obj-$(CONFIG_VFIO)		+= vfio/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
68
  obj-y				+= cdrom/
70e840499   Miguel Ojeda Sandonis   [PATCH] drivers: ...
69
  obj-y				+= auxdisplay/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
70
71
72
73
74
75
76
77
  obj-$(CONFIG_PCCARD)		+= pcmcia/
  obj-$(CONFIG_DIO)		+= dio/
  obj-$(CONFIG_SBUS)		+= sbus/
  obj-$(CONFIG_ZORRO)		+= zorro/
  obj-$(CONFIG_MAC)		+= macintosh/
  obj-$(CONFIG_ATA_OVER_ETH)	+= block/aoe/
  obj-$(CONFIG_PARIDE) 		+= block/paride/
  obj-$(CONFIG_TC)		+= tc/
ae5d82cb8   David Vrabel   uwb: build UWB be...
78
  obj-$(CONFIG_UWB)		+= uwb/
edc7cb2e9   Felipe Balbi   usb: phy: make it...
79
  obj-$(CONFIG_USB_PHY)		+= usb/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
80
  obj-$(CONFIG_USB)		+= usb/
6015d2c4c   Linus Torvalds   Link USB drivers ...
81
  obj-$(CONFIG_PCI)		+= usb/
4661ffc91   Felipe Balbi   usb: don't enter ...
82
  obj-$(CONFIG_USB_GADGET)	+= usb/
51c38f9bc   Dmitry Torokhov   Input: initialize...
83
  obj-$(CONFIG_SERIO)		+= input/serio/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
84
85
86
  obj-$(CONFIG_GAMEPORT)		+= input/gameport/
  obj-$(CONFIG_INPUT)		+= input/
  obj-$(CONFIG_I2O)		+= message/
c58411e95   Alessandro Zummo   [PATCH] RTC Subsy...
87
  obj-$(CONFIG_RTC_LIB)		+= rtc/
a357482a1   Guennadi Liakhovetski   V4L/DVB (11561a):...
88
  obj-y				+= i2c/ media/
eae9d2ba0   Rodolfo Giometti   LinuxPPS: core su...
89
  obj-$(CONFIG_PPS)		+= pps/
d94ba80eb   Richard Cochran   ptp: Added a bran...
90
  obj-$(CONFIG_PTP_1588_CLOCK)	+= ptp/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
91
  obj-$(CONFIG_W1)		+= w1/
4a11b59d8   Anton Vorontsov   [BATTERY] Univers...
92
  obj-$(CONFIG_POWER_SUPPLY)	+= power/
ad2f931dc   Jean Delvare   [PATCH] I2C: Move...
93
  obj-$(CONFIG_HWMON)		+= hwmon/
203d3d4aa   Zhang Rui   the generic therm...
94
  obj-$(CONFIG_THERMAL)		+= thermal/
b7e04f8c6   Wim Van Sebroeck   mv watchdog tree ...
95
  obj-$(CONFIG_WATCHDOG)		+= watchdog/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
96
97
  obj-$(CONFIG_MD)		+= md/
  obj-$(CONFIG_BT)		+= bluetooth/
f7511d5f6   Samuel Thibault   Basic braille scr...
98
  obj-$(CONFIG_ACCESSIBILITY)	+= accessibility/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
99
  obj-$(CONFIG_ISDN)		+= isdn/
da9bb1d27   Alan Cox   [PATCH] EDAC: cor...
100
  obj-$(CONFIG_EDAC)		+= edac/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
101
  obj-$(CONFIG_EISA)		+= eisa/
7ea08093e   Glauber de Oliveira Costa   lguest: fix drive...
102
  obj-y				+= lguest/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
103
  obj-$(CONFIG_CPU_FREQ)		+= cpufreq/
4f86d3a8e   Len Brown   cpuidle: consolid...
104
  obj-$(CONFIG_CPU_IDLE)		+= cpuidle/
52c506f0b   Adrian Hunter   mmc: sdhci-pci: a...
105
  obj-y				+= mmc/
baf8532a1   Alex Dubov   memstick: initial...
106
  obj-$(CONFIG_MEMSTICK)		+= memstick/
4440673a9   Uwe Kleine-König   leds: provide hel...
107
  obj-y				+= leds/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
108
  obj-$(CONFIG_INFINIBAND)	+= infiniband/
466575f4e   Jes Sorensen   [PATCH] drivers/s...
109
  obj-$(CONFIG_SGI_SN)		+= sn/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
110
111
  obj-y				+= firmware/
  obj-$(CONFIG_CRYPTO)		+= crypto/
e87eaad10   Paul Mundt   [PATCH] sh: Re-ad...
112
  obj-$(CONFIG_SUPERH)		+= sh/
bf98c1eac   Laurent Pinchart   ARM: Rename ARCH_...
113
  obj-$(CONFIG_ARCH_SHMOBILE_LEGACY)	+= sh/
592913ecb   John Stultz   time: Kill off CO...
114
115
116
  ifndef CONFIG_ARCH_USES_GETTIMEOFFSET
  obj-y				+= clocksource/
  endif
7589670f3   Shannon Nelson   DCA: Add Direct C...
117
  obj-$(CONFIG_DCA)		+= dca/
63f3861d2   Jiri Kosina   [PATCH] Generic H...
118
  obj-$(CONFIG_HID)		+= hid/
eb30c7202   Geert Uytterhoeven   [POWERPC] ps3: Mi...
119
  obj-$(CONFIG_PPC_PS3)		+= ps3/
97e873e5c   Stephen Rothwell   Start split out o...
120
  obj-$(CONFIG_OF)		+= of/
61e115a56   Michael Buesch   [SSB]: add Sonics...
121
  obj-$(CONFIG_SSB)		+= ssb/
8369ae33b   Rafał Miłecki   bcma: add Broadco...
122
  obj-$(CONFIG_BCMA)		+= bcma/
f87d0fbb5   Rusty Russell   vringh: host-side...
123
  obj-$(CONFIG_VHOST_RING)	+= vhost/
55e331cf7   Florian Fainelli   drivers: add supp...
124
  obj-$(CONFIG_VLYNQ)		+= vlynq/
350455891   Greg Kroah-Hartman   Staging: add Kcon...
125
  obj-$(CONFIG_STAGING)		+= staging/
41b16dce3   Len Brown   create drivers/pl...
126
  obj-y				+= platform/
6d803ba73   Jean-Christop PLAGNIOL-VILLARD   ARM: 6483/1: arm ...
127
128
  #common clk code
  obj-y				+= clk/
bd9a4c7df   Ohad Ben-Cohen   drivers: hwspinlo...
129

300586778   Rob Herring   ARM / highbank: a...
130
  obj-$(CONFIG_MAILBOX)		+= mailbox/
bd9a4c7df   Ohad Ben-Cohen   drivers: hwspinlo...
131
  obj-$(CONFIG_HWSPINLOCK)	+= hwspinlock/
3e256b8f8   Lauro Ramos Venancio   NFC: add nfc subs...
132
  obj-$(CONFIG_NFC)		+= nfc/
6b385b46e   Joerg Roedel   iommu/core: Fix b...
133
  obj-$(CONFIG_IOMMU_SUPPORT)	+= iommu/
400e64df6   Ohad Ben-Cohen   remoteproc: add f...
134
  obj-$(CONFIG_REMOTEPROC)	+= remoteproc/
bcabbccab   Ohad Ben-Cohen   rpmsg: add virtio...
135
  obj-$(CONFIG_RPMSG)		+= rpmsg/
6db719940   Timur Tabi   drivers/virt: int...
136
137
138
  
  # Virtualization drivers
  obj-$(CONFIG_VIRT_DRIVERS)	+= virt/
46a971913   Greg Kroah-Hartman   Staging: hv: move...
139
  obj-$(CONFIG_HYPERV)		+= hv/
a3c98b8b2   MyungJoo Ham   PM: Introduce dev...
140
141
  
  obj-$(CONFIG_PM_DEVFREQ)	+= devfreq/
de55d8716   MyungJoo Ham   Extcon (external ...
142
  obj-$(CONFIG_EXTCON)		+= extcon/
7ec944538   Aneesh V   memory: emif: add...
143
  obj-$(CONFIG_MEMORY)		+= memory/
a980e0460   Jonathan Cameron   IIO: Move the cor...
144
  obj-$(CONFIG_IIO)		+= iio/
db3b9e990   Greg Kroah-Hartman   Staging: VME: mov...
145
  obj-$(CONFIG_VME_BUS)		+= vme/
05e5027ef   Greg Kroah-Hartman   Staging: ipack: m...
146
  obj-$(CONFIG_IPACK_BUS)		+= ipack/
fce8a7bb5   Jon Mason   PCI-Express Non-T...
147
  obj-$(CONFIG_NTB)		+= ntb/
9c9f32edd   Alessandro Rubini   FMC: create drive...
148
  obj-$(CONFIG_FMC)		+= fmc/
12cc4b382   Srinivas Pandruvada   PowerCap: Add to ...
149
  obj-$(CONFIG_POWERCAP)		+= powercap/
3764e82e5   Johannes Thumshirn   drivers: Introduc...
150
  obj-$(CONFIG_MCB)		+= mcb/