USB: Obscure Maxon BP3-USB Device Support 16d8:6280 for option driver
[linux-2.6/s3c2410-cpufreq.git] / drivers / ide / Makefile
bloba4a4323be911b3761b1c6642c893576e3824c4d0
2 # Makefile for the kernel ata, atapi, and ide block device drivers.
4 # 12 September 2000, Bartlomiej Zolnierkiewicz <bkz@linux-ide.org>
5 # Rewritten to use lists instead of if-statements.
7 # Note : at this point, these files are compiled on all systems.
8 # In the future, some of these should be built conditionally.
10 # link order is important here
12 EXTRA_CFLAGS += -Idrivers/ide
14 ide-core-y += ide.o ide-io.o ide-iops.o ide-lib.o ide-probe.o ide-taskfile.o
16 # core IDE code
17 ide-core-$(CONFIG_BLK_DEV_IDEPCI) += setup-pci.o
18 ide-core-$(CONFIG_BLK_DEV_IDEDMA) += ide-dma.o
19 ide-core-$(CONFIG_IDE_PROC_FS) += ide-proc.o
20 ide-core-$(CONFIG_BLK_DEV_IDEACPI) += ide-acpi.o
22 obj-$(CONFIG_BLK_DEV_IDE) += ide-core.o
24 ifeq ($(CONFIG_IDE_ARM), y)
25 ide-arm-core-y += arm/ide_arm.o
26 obj-y += ide-arm-core.o
27 endif
29 obj-$(CONFIG_BLK_DEV_IDE) += legacy/ pci/
31 obj-$(CONFIG_IDEPCI_PCIBUS_ORDER) += ide-scan-pci.o
33 ifeq ($(CONFIG_BLK_DEV_CMD640), y)
34 cmd640-core-y += pci/cmd640.o
35 obj-y += cmd640-core.o
36 endif
38 obj-$(CONFIG_BLK_DEV_IDE) += cris/ ppc/
39 obj-$(CONFIG_BLK_DEV_IDEPNP) += ide-pnp.o
40 obj-$(CONFIG_IDE_H8300) += h8300/
41 obj-$(CONFIG_IDE_GENERIC) += ide-generic.o
43 ide-cd_mod-y += ide-cd.o ide-cd_ioctl.o ide-cd_verbose.o
45 obj-$(CONFIG_BLK_DEV_IDEDISK) += ide-disk.o
46 obj-$(CONFIG_BLK_DEV_IDECD) += ide-cd_mod.o
47 obj-$(CONFIG_BLK_DEV_IDETAPE) += ide-tape.o
48 obj-$(CONFIG_BLK_DEV_IDEFLOPPY) += ide-floppy.o
50 ifeq ($(CONFIG_BLK_DEV_IDECS), y)
51 ide-cs-core-y += legacy/ide-cs.o
52 obj-y += ide-cs-core.o
53 endif
55 ifeq ($(CONFIG_BLK_DEV_PLATFORM), y)
56 ide-platform-core-y += legacy/ide_platform.o
57 obj-y += ide-platform-core.o
58 endif
60 obj-$(CONFIG_BLK_DEV_IDE) += arm/ mips/
62 # old hd driver must be last
63 ifeq ($(CONFIG_BLK_DEV_HD), y)
64 hd-core-y += legacy/hd.o
65 obj-y += hd-core.o
66 endif