]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/ide/Makefile
ide: checkpatch.pl fixes for ide-timing.h
[mirror_ubuntu-bionic-kernel.git] / drivers / ide / Makefile
CommitLineData
1da177e4
LT
1#
2# Makefile for the kernel ata, atapi, and ide block device drivers.
3#
4# 12 September 2000, Bartlomiej Zolnierkiewicz <bkz@linux-ide.org>
5# Rewritten to use lists instead of if-statements.
6#
7# Note : at this point, these files are compiled on all systems.
8# In the future, some of these should be built conditionally.
9#
ade2daf9 10# link order is important here
1da177e4
LT
11
12EXTRA_CFLAGS += -Idrivers/ide
13
1da177e4
LT
14ide-core-y += ide.o ide-io.o ide-iops.o ide-lib.o ide-probe.o ide-taskfile.o
15
ade2daf9 16# core IDE code
594c16d8 17ide-core-$(CONFIG_IDE_ATAPI) += ide-atapi.o
1da177e4
LT
18ide-core-$(CONFIG_BLK_DEV_IDEPCI) += setup-pci.o
19ide-core-$(CONFIG_BLK_DEV_IDEDMA) += ide-dma.o
ecfd80e4 20ide-core-$(CONFIG_IDE_PROC_FS) += ide-proc.o
e3a59b4d 21ide-core-$(CONFIG_BLK_DEV_IDEACPI) += ide-acpi.o
1da177e4 22
ade2daf9 23obj-$(CONFIG_BLK_DEV_IDE) += ide-core.o
1da177e4 24
ade2daf9
BZ
25ifeq ($(CONFIG_IDE_ARM), y)
26 ide-arm-core-y += arm/ide_arm.o
27 obj-y += ide-arm-core.o
28endif
1da177e4 29
ade2daf9 30obj-$(CONFIG_BLK_DEV_IDE) += legacy/ pci/
1da177e4 31
ade2daf9 32obj-$(CONFIG_IDEPCI_PCIBUS_ORDER) += ide-scan-pci.o
1da177e4 33
ade2daf9
BZ
34ifeq ($(CONFIG_BLK_DEV_CMD640), y)
35 cmd640-core-y += pci/cmd640.o
36 obj-y += cmd640-core.o
37endif
38
3f31b874 39obj-$(CONFIG_BLK_DEV_IDE) += ppc/
ade2daf9 40obj-$(CONFIG_IDE_H8300) += h8300/
1da177e4 41obj-$(CONFIG_IDE_GENERIC) += ide-generic.o
2625cd52 42obj-$(CONFIG_BLK_DEV_IDEPNP) += ide-pnp.o
1da177e4 43
17802998 44ide-cd_mod-y += ide-cd.o ide-cd_ioctl.o ide-cd_verbose.o
972560fb 45
1da177e4 46obj-$(CONFIG_BLK_DEV_IDEDISK) += ide-disk.o
972560fb 47obj-$(CONFIG_BLK_DEV_IDECD) += ide-cd_mod.o
1da177e4
LT
48obj-$(CONFIG_BLK_DEV_IDETAPE) += ide-tape.o
49obj-$(CONFIG_BLK_DEV_IDEFLOPPY) += ide-floppy.o
50
ade2daf9
BZ
51ifeq ($(CONFIG_BLK_DEV_IDECS), y)
52 ide-cs-core-y += legacy/ide-cs.o
53 obj-y += ide-cs-core.o
54endif
55
56ifeq ($(CONFIG_BLK_DEV_PLATFORM), y)
57 ide-platform-core-y += legacy/ide_platform.o
58 obj-y += ide-platform-core.o
59endif
60
61obj-$(CONFIG_BLK_DEV_IDE) += arm/ mips/
62
63# old hd driver must be last
64ifeq ($(CONFIG_BLK_DEV_HD), y)
65 hd-core-y += legacy/hd.o
66 obj-y += hd-core.o
67endif