From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bradley Grove Subject: Re: [PATCH v3 10/10] [RFC] SCSI: esas2r: Add Makefile, Kconfig, and MAINTAINERS files Date: Tue, 06 Aug 2013 11:35:43 -0400 Message-ID: <520117CF.1090309@attotech.com> References: <1375462797-2128-1-git-send-email-bgrove@attotech.com> <1375462797-2128-11-git-send-email-bgrove@attotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from sw.attotech.com ([208.69.85.34]:56737 "EHLO NOTESERV1.attotech.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1755506Ab3HFPfs (ORCPT ); Tue, 6 Aug 2013 11:35:48 -0400 In-Reply-To: <1375462797-2128-11-git-send-email-bgrove@attotech.com> Sender: linux-scsi-owner@vger.kernel.org List-Id: linux-scsi@vger.kernel.org To: linux-scsi@vger.kernel.org, jbottomley@parallels.com Cc: Bradley Grove , jseba@attotech.com James, Do you have any comments on this last patch post? I probably shouldn't have posted it as an RFC. We've completed our internal testing of the driver, and I think it's probably ready to submit. Brad On 08/02/2013 12:59 PM, Bradley Grove wrote: > > Signed-off-by: Bradley Grove > --- > MAINTAINERS | 7 +++++++ > drivers/scsi/Kconfig | 1 + > drivers/scsi/Makefile | 1 + > drivers/scsi/esas2r/Kconfig | 6 ++++++ > drivers/scsi/esas2r/Makefile | 5 +++++ > 5 files changed, 20 insertions(+) > create mode 100644 drivers/scsi/esas2r/Kconfig > create mode 100644 drivers/scsi/esas2r/Makefile > > diff --git a/MAINTAINERS b/MAINTAINERS > index a26b10e..024bc9a 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -1542,6 +1542,13 @@ W: http://atmelwlandriver.sourceforge.net/ > S: Maintained > F: drivers/net/wireless/atmel* > > +ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER > +M: Bradley Grove > +L: linux-scsi@vger.kernel.org > +W: http://www.attotech.com > +S: Supported > +F: drivers/scsi/esas2r > + > AUDIT SUBSYSTEM > M: Al Viro > M: Eric Paris > diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig > index 48b2918..c298b76 100644 > --- a/drivers/scsi/Kconfig > +++ b/drivers/scsi/Kconfig > @@ -601,6 +601,7 @@ config SCSI_ARCMSR > To compile this driver as a module, choose M here: the > module will be called arcmsr (modprobe arcmsr). > > +source "drivers/scsi/esas2r/Kconfig" > source "drivers/scsi/megaraid/Kconfig.megaraid" > source "drivers/scsi/mpt2sas/Kconfig" > source "drivers/scsi/mpt3sas/Kconfig" > diff --git a/drivers/scsi/Makefile b/drivers/scsi/Makefile > index b607ba4..149bb6b 100644 > --- a/drivers/scsi/Makefile > +++ b/drivers/scsi/Makefile > @@ -141,6 +141,7 @@ obj-$(CONFIG_SCSI_CXGB3_ISCSI) += libiscsi.o libiscsi_tcp.o cxgbi/ > obj-$(CONFIG_SCSI_CXGB4_ISCSI) += libiscsi.o libiscsi_tcp.o cxgbi/ > obj-$(CONFIG_SCSI_BNX2_ISCSI) += libiscsi.o bnx2i/ > obj-$(CONFIG_BE2ISCSI) += libiscsi.o be2iscsi/ > +obj-$(CONFIG_SCSI_ESAS2R) += esas2r/ > obj-$(CONFIG_SCSI_PMCRAID) += pmcraid.o > obj-$(CONFIG_SCSI_VIRTIO) += virtio_scsi.o > obj-$(CONFIG_VMWARE_PVSCSI) += vmw_pvscsi.o > diff --git a/drivers/scsi/esas2r/Kconfig b/drivers/scsi/esas2r/Kconfig > new file mode 100644 > index 0000000..80824f0 > --- /dev/null > +++ b/drivers/scsi/esas2r/Kconfig > @@ -0,0 +1,5 @@ > +config SCSI_ESAS2R > + tristate "ATTO Technology's ExpressSAS RAID adapter driver" > + depends on PCI && SCSI > + ---help--- > + This driver supports the ATTO ExpressSAS R6xx SAS/SATA RAID controllers. > diff --git a/drivers/scsi/esas2r/Makefile b/drivers/scsi/esas2r/Makefile > new file mode 100644 > index 0000000..c77160b > --- /dev/null > +++ b/drivers/scsi/esas2r/Makefile > @@ -0,0 +1,5 @@ > +obj-$(CONFIG_SCSI_ESAS2R) += esas2r.o > + > +esas2r-objs := esas2r_log.o esas2r_disc.o esas2r_flash.o esas2r_init.o \ > + esas2r_int.o esas2r_io.o esas2r_ioctl.o esas2r_targdb.o \ > + esas2r_vda.o esas2r_main.o >