-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 2020 b: refs/heads/master c: 5f5affd h: refs/heads/master v: v3
- Loading branch information
Moore, Eric Dean
authored and
James Bottomley
committed
May 20, 2005
1 parent
d322030
commit 2aea90f
Showing
3 changed files
with
46 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 099175c94a221fa2723b7273883c98cd32efe900 | ||
refs/heads/master: 5f5affddad836978f057d316ba8083a5d553773c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,38 @@ | ||
# | ||
# Makefile for the LSI Logic Fusion MPT (Message Passing Technology) drivers. | ||
# | ||
# Note! If you want to turn on various debug defines for an extended period of | ||
# time but don't want them lingering around in the Makefile when you pass it on | ||
# to someone else, use the MPT_CFLAGS env variable (thanks Steve). -nromer | ||
|
||
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-{ LSI_LOGIC | ||
|
||
# Architecture-specific... | ||
# # intel | ||
#EXTRA_CFLAGS += -g | ||
# # sparc64 | ||
#EXTRA_CFLAGS += -gstabs+ | ||
|
||
EXTRA_CFLAGS += ${MPT_CFLAGS} | ||
|
||
# Fusion MPT drivers; recognized debug defines... | ||
# MPT general: | ||
#EXTRA_CFLAGS += -DMPT_DEBUG_SCSI | ||
#EXTRA_CFLAGS += -DMPT_DEBUG | ||
#EXTRA_CFLAGS += -DMPT_DEBUG_MSG_FRAME | ||
#EXTRA_CFLAGS += -DMPT_DEBUG_SG | ||
#EXTRA_CFLAGS += -DMPT_DEBUG_EVENTS | ||
#EXTRA_CFLAGS += -DMPT_DEBUG_INIT | ||
#EXTRA_CFLAGS += -DMPT_DEBUG_EXIT | ||
#EXTRA_CFLAGS += -DMPT_DEBUG_FAIL | ||
|
||
|
||
# | ||
# driver/module specifics... | ||
# | ||
# For mptbase: | ||
#CFLAGS_mptbase.o += -DMPT_DEBUG_HANDSHAKE | ||
#CFLAGS_mptbase.o += -DMPT_DEBUG_CONFIG | ||
#CFLAGS_mptbase.o += -DMPT_DEBUG_DL | ||
#CFLAGS_mptbase.o += -DMPT_DEBUG_IRQ | ||
#CFLAGS_mptbase.o += -DMPT_DEBUG_RESET | ||
# | ||
# For mptscsih: | ||
#CFLAGS_mptscsih.o += -DMPT_DEBUG_SCANDV | ||
#CFLAGS_mptscsih.o += -DMPT_DEBUG_RESET | ||
#CFLAGS_mptscsih.o += -DMPT_DEBUG_NEH | ||
#CFLAGS_mptscsih.o += -DMPT_DEBUG_DV | ||
#CFLAGS_mptscsih.o += -DMPT_DEBUG_NEGO | ||
#CFLAGS_mptscsih.o += -DMPT_DEBUG_TM | ||
#CFLAGS_mptscsih.o += -DMPT_DEBUG_SCSI | ||
#CFLAGS_mptscsih.o += -DMPT_DEBUG_REPLY | ||
# | ||
# For mptctl: | ||
#CFLAGS_mptctl.o += -DMPT_DEBUG_IOCTL | ||
# | ||
# For mptlan: | ||
#CFLAGS_mptlan.o += -DMPT_LAN_IO_DEBUG | ||
# | ||
# For isense: | ||
|
||
# EXP... | ||
##mptscsih-objs := scsihost.o scsiherr.o | ||
|
||
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-} LSI_LOGIC | ||
|
||
obj-$(CONFIG_FUSION) += mptbase.o mptscsih.o | ||
obj-$(CONFIG_FUSION_SPI) += mptspi.o mptscsih.o mptbase.o | ||
obj-$(CONFIG_FUSION_FC) += mptfc.o mptscsih.o mptbase.o | ||
obj-$(CONFIG_FUSION_CTL) += mptctl.o | ||
obj-$(CONFIG_FUSION_LAN) += mptlan.o |