diff options
Diffstat (limited to 'drivers/block/Makefile')
-rw-r--r-- | drivers/block/Makefile | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/drivers/block/Makefile b/drivers/block/Makefile index 50e9f6be6..f992a98a5 100644 --- a/drivers/block/Makefile +++ b/drivers/block/Makefile @@ -79,11 +79,17 @@ L_OBJS += hd.o endif ifeq ($(CONFIG_BLK_DEV_IDE),y) -LX_OBJS += ide.o -L_OBJS += ide-probe.o + LX_OBJS += ide.o + ifeq ($(CONFIG_PROC_FS),y) + L_OBJS += ide-proc.o + endif + L_OBJS += ide-probe.o else ifeq ($(CONFIG_BLK_DEV_IDE),m) MX_OBJS += ide.o + ifeq ($(CONFIG_PROC_FS),y) + M_OBJS += ide-proc.o + endif M_OBJS += ide-probe.o endif endif @@ -96,6 +102,10 @@ ifeq ($(CONFIG_BLK_DEV_CMD640),y) L_OBJS += cmd640.o endif +ifeq ($(CONFIG_BLK_DEV_IDEPCI),y) +L_OBJS += ide-pci.o +endif + ifeq ($(CONFIG_BLK_DEV_IDEDMA),y) L_OBJS += ide-dma.o endif @@ -137,6 +147,10 @@ ifeq ($(CONFIG_BLK_DEV_OPTI621),y) L_OBJS += opti621.o endif +ifeq ($(CONFIG_BLK_DEV_NS87415),y) +L_OBJS += ns87415.o +endif + ifeq ($(CONFIG_BLK_DEV_IDEDISK),y) L_OBJS += ide-disk.o else |