All of lore.kernel.org
 help / color / mirror / Atom feed
From: James Smart <jsmart2021@gmail.com>
To: linux-scsi@vger.kernel.org
Cc: James Smart <jsmart2021@gmail.com>,
	Ram Vegesna <ram.vegesna@broadcom.com>,
	Hannes Reinecke <hare@suse.de>, Daniel Wagner <dwagner@suse.de>
Subject: [PATCH v8 31/31] elx: efct: Tie into kernel Kconfig and build process
Date: Fri, 23 Apr 2021 16:34:55 -0700	[thread overview]
Message-ID: <20210423233455.27243-32-jsmart2021@gmail.com> (raw)
In-Reply-To: <20210423233455.27243-1-jsmart2021@gmail.com>

This final patch ties the efct driver into the kernel Kconfig
and build linkages in the drivers/scsi directory.

Co-developed-by: Ram Vegesna <ram.vegesna@broadcom.com>
Signed-off-by: Ram Vegesna <ram.vegesna@broadcom.com>
Signed-off-by: James Smart <jsmart2021@gmail.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Daniel Wagner <dwagner@suse.de>
---
 drivers/scsi/Kconfig  | 2 ++
 drivers/scsi/Makefile | 1 +
 2 files changed, 3 insertions(+)

diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig
index 06b87c7f6bab..b3d10b2950b0 100644
--- a/drivers/scsi/Kconfig
+++ b/drivers/scsi/Kconfig
@@ -1157,6 +1157,8 @@ config SCSI_LPFC_DEBUG_FS
 	  This makes debugging information from the lpfc driver
 	  available via the debugfs filesystem.
 
+source "drivers/scsi/elx/Kconfig"
+
 config SCSI_SIM710
 	tristate "Simple 53c710 SCSI support (Compaq, NCR machines)"
 	depends on EISA && SCSI
diff --git a/drivers/scsi/Makefile b/drivers/scsi/Makefile
index bc3882f5cc69..8504478fa793 100644
--- a/drivers/scsi/Makefile
+++ b/drivers/scsi/Makefile
@@ -85,6 +85,7 @@ obj-$(CONFIG_SCSI_QLOGIC_1280)	+= qla1280.o
 obj-$(CONFIG_SCSI_QLA_FC)	+= qla2xxx/
 obj-$(CONFIG_SCSI_QLA_ISCSI)	+= libiscsi.o qla4xxx/
 obj-$(CONFIG_SCSI_LPFC)		+= lpfc/
+obj-$(CONFIG_SCSI_EFCT)		+= elx/
 obj-$(CONFIG_SCSI_BFA_FC)	+= bfa/
 obj-$(CONFIG_SCSI_CHELSIO_FCOE)	+= csiostor/
 obj-$(CONFIG_SCSI_DMX3191D)	+= dmx3191d.o
-- 
2.26.2


      parent reply	other threads:[~2021-04-23 23:37 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-23 23:34 [PATCH v8 00/31] [NEW] efct: Broadcom (Emulex) FC Target driver James Smart
2021-04-23 23:34 ` [PATCH v8 01/31] elx: libefc_sli: SLI-4 register offsets and field definitions James Smart
2021-04-23 23:34 ` [PATCH v8 02/31] elx: libefc_sli: SLI Descriptors and Queue entries James Smart
2021-04-28  8:46   ` Hannes Reinecke
2021-04-23 23:34 ` [PATCH v8 03/31] elx: libefc_sli: Data structures and defines for mbox commands James Smart
2021-04-28  8:50   ` Hannes Reinecke
2021-04-23 23:34 ` [PATCH v8 04/31] elx: libefc_sli: queue create/destroy/parse routines James Smart
2021-04-28  8:54   ` Hannes Reinecke
2021-04-23 23:34 ` [PATCH v8 05/31] elx: libefc_sli: Populate and post different WQEs James Smart
2021-04-23 23:34 ` [PATCH v8 06/31] elx: libefc_sli: bmbx routines and SLI config commands James Smart
2021-04-23 23:34 ` [PATCH v8 07/31] elx: libefc_sli: APIs to setup SLI library James Smart
2021-04-23 23:34 ` [PATCH v8 08/31] elx: libefc: Generic state machine framework James Smart
2021-04-23 23:34 ` [PATCH v8 09/31] elx: libefc: Emulex FC discovery library APIs and definitions James Smart
2021-04-28  9:01   ` Hannes Reinecke
2021-04-23 23:34 ` [PATCH v8 10/31] elx: libefc: FC Domain state machine interfaces James Smart
2021-04-23 23:34 ` [PATCH v8 11/31] elx: libefc: SLI and FC PORT " James Smart
2021-04-28  9:08   ` Hannes Reinecke
2021-04-23 23:34 ` [PATCH v8 12/31] elx: libefc: Remote node " James Smart
2021-04-28  9:11   ` Hannes Reinecke
2021-04-23 23:34 ` [PATCH v8 13/31] elx: libefc: Fabric " James Smart
2021-04-23 23:34 ` [PATCH v8 14/31] elx: libefc: FC node ELS and state handling James Smart
2021-04-23 23:34 ` [PATCH v8 15/31] elx: libefc: Extended link Service IO handling James Smart
2021-04-28  9:13   ` Hannes Reinecke
2021-04-23 23:34 ` [PATCH v8 16/31] elx: libefc: Register discovery objects with hardware James Smart
2021-04-28  9:15   ` Hannes Reinecke
2021-04-23 23:34 ` [PATCH v8 17/31] elx: efct: Data structures and defines for hw operations James Smart
2021-04-23 23:34 ` [PATCH v8 18/31] elx: efct: Driver initialization routines James Smart
2021-04-28  9:21   ` Hannes Reinecke
2021-04-23 23:34 ` [PATCH v8 19/31] elx: efct: Hardware queues creation and deletion James Smart
2021-04-23 23:34 ` [PATCH v8 20/31] elx: efct: RQ buffer, memory pool allocation and deallocation APIs James Smart
2021-04-28  9:22   ` Hannes Reinecke
2021-04-23 23:34 ` [PATCH v8 21/31] elx: efct: Hardware IO and SGL initialization James Smart
2021-04-28  9:27   ` Hannes Reinecke
2021-04-23 23:34 ` [PATCH v8 22/31] elx: efct: Hardware queues processing James Smart
2021-04-23 23:34 ` [PATCH v8 23/31] elx: efct: Unsolicited FC frame processing routines James Smart
2021-04-23 23:34 ` [PATCH v8 24/31] elx: efct: SCSI IO handling routines James Smart
2021-04-23 23:34 ` [PATCH v8 25/31] elx: efct: LIO backend interface routines James Smart
2021-04-24 20:34   ` Mike Christie
2021-04-24 21:10     ` Mike Christie
2021-04-23 23:34 ` [PATCH v8 26/31] elx: efct: Hardware IO submission routines James Smart
2021-04-23 23:34 ` [PATCH v8 27/31] elx: efct: link and host statistics James Smart
2021-04-23 23:34 ` [PATCH v8 28/31] elx: efct: xport and hardware teardown routines James Smart
2021-04-28  9:29   ` Hannes Reinecke
2021-04-23 23:34 ` [PATCH v8 29/31] elx: efct: scsi_transport_fc host interface support James Smart
2021-04-28  9:31   ` Hannes Reinecke
2021-04-23 23:34 ` [PATCH v8 30/31] elx: efct: Add Makefile and Kconfig for efct driver James Smart
2021-04-23 23:34 ` James Smart [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210423233455.27243-32-jsmart2021@gmail.com \
    --to=jsmart2021@gmail.com \
    --cc=dwagner@suse.de \
    --cc=hare@suse.de \
    --cc=linux-scsi@vger.kernel.org \
    --cc=ram.vegesna@broadcom.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.