-
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.
[SCSI] mptfusion: Kconfig Adding new bus type drivers for fusion driv…
…ers. (1) Kconfig - added new mptspi and mptfc scsi lld drivers (2) Kconfig - increased MAX_SGE from 40 to 128 (2) Makefile - compilation support for split drivers (3) Makefile - cleaned up debug defines; e.g. removed obsolete, added others Signed-off-by: Eric Moore <Eric.Moore@lsil.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
- Loading branch information
Moore, Eric Dean
authored and
James Bottomley
committed
May 20, 2005
1 parent
099175c
commit 5f5affd
Showing
2 changed files
with
45 additions
and
44 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
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 |