Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754893AbZCXAW6 (ORCPT ); Mon, 23 Mar 2009 20:22:58 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754652AbZCXAWK (ORCPT ); Mon, 23 Mar 2009 20:22:10 -0400 Received: from mx30.brocade.com ([144.49.194.4]:17079 "EHLO mx30.brocade.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754960AbZCXAVz (ORCPT ); Mon, 23 Mar 2009 20:21:55 -0400 X-IronPort-AV: E=Sophos;i="4.38,410,1233561600"; d="scan'208";a="70873448" Date: Mon, 23 Mar 2009 17:12:18 -0700 From: Krishna Gudipati Message-Id: <200903240012.n2O0CIM8014190@blc-10-2.brocade.com> To: James.Bottomley@HansenPartnership.com Subject: [PATCH 4/5] bfa: Brocade BFA FC SCSI driver (makefile) Cc: huangj@brocade.com, kgudipat@brocade.com, linux-kernel@vger.kernel.org, linux-scsi@vger.kernel.org, rvadivel@brocade.com, vravindr@brocade.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2788 Lines: 63 From: Krishna Chaitanya Gudipati This patch contains Makefile and Kconfig file for scsi and bfa.Fixed the code review comments from previous submission. Signed-off-by: Krishna Chaitanya Gudipati --- Kconfig | 9 +++++++++ Makefile | 1 + bfa/Makefile | 12 ++++++++++++ 3 files changed, 22 insertions(+) diff -urpN orig/drivers/scsi/Kconfig patch/drivers/scsi/Kconfig --- orig/drivers/scsi/Kconfig 2009-03-23 15:33:14.943524000 -0700 +++ patch/drivers/scsi/Kconfig 2009-03-23 15:33:09.313636000 -0700 @@ -1797,6 +1797,15 @@ config SCSI_SRP To compile this driver as a module, choose M here: the module will be called libsrp. +config SCSI_BFA_FC + tristate "Brocade BFA Fibre Channel Support" + depends on PCI && SCSI + help + This bfa driver supports all Brocade PCIe Fibre Channel host adapters. + + To compile this driver as a module, choose M here. The module will + be called bfa. + endif # SCSI_LOWLEVEL source "drivers/scsi/pcmcia/Kconfig" diff -urpN orig/drivers/scsi/Makefile patch/drivers/scsi/Makefile --- orig/drivers/scsi/Makefile 2009-03-23 15:33:14.957029000 -0700 +++ patch/drivers/scsi/Makefile 2009-03-23 15:33:09.354116000 -0700 @@ -84,6 +84,7 @@ obj-$(CONFIG_SCSI_QLOGIC_1280) += qla128 obj-$(CONFIG_SCSI_QLA_FC) += qla2xxx/ obj-$(CONFIG_SCSI_QLA_ISCSI) += qla4xxx/ obj-$(CONFIG_SCSI_LPFC) += lpfc/ +obj-$(CONFIG_SCSI_BFA_FC) += bfa/ obj-$(CONFIG_SCSI_PAS16) += pas16.o obj-$(CONFIG_SCSI_T128) += t128.o obj-$(CONFIG_SCSI_DMX3191D) += dmx3191d.o diff -urpN orig/drivers/scsi/bfa/Makefile patch/drivers/scsi/bfa/Makefile --- orig/drivers/scsi/bfa/Makefile 1969-12-31 16:00:00.000000000 -0800 +++ patch/drivers/scsi/bfa/Makefile 2009-03-23 15:33:14.917161000 -0700 @@ -0,0 +1,12 @@ +# +# Copyright (c) 2005-2008 Brocade Communications Systems, Inc. +# All rights reserved +# www.brocade.com +# +# Linux driver for Brocade Fibre Channel Host Bus Adapter Makefile. +# +obj-$(CONFIG_SCSI_BFA_FC) := bfa.o + +bfa-y := bfad.o bfad_intr.o bfad_os.o bfad_im.o bfad_attr.o bfad_fwimg.o bfa_core.o bfa_ioc.o bfa_iocfc.o bfa_fcxp.o bfa_lps.o bfa_hw_cb.o bfa_hw_ct.o bfa_intr.o bfa_timer.o bfa_rport.o bfa_port.o bfa_uf.o bfa_sgpg.o bfa_module.o bfa_ioim.o bfa_itnim.o bfa_fcpim.o bfa_tskim.o bfa_port.o bfa_vport.o bfa_lport.o bfa_fabric.o bfa_auth.o bfa_vfapi.o bfa_log.o bfa_log_module.o bfa_csdebug.o bfa_sm.o plog.o + +EXTRA_CFLAGS += -I$(obj) -I$(obj)/include -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/