From patchwork Fri Oct 16 18:24:56 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rasesh Mody X-Patchwork-Id: 36262 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by ozlabs.org (Postfix) with ESMTP id 051F5B7C11 for ; Sat, 17 Oct 2009 05:30:37 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752814AbZJPSaQ (ORCPT ); Fri, 16 Oct 2009 14:30:16 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752579AbZJPSaJ (ORCPT ); Fri, 16 Oct 2009 14:30:09 -0400 Received: from hq-exedge.brocade.com ([66.243.153.83]:36257 "EHLO hq-exedge.brocade.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752238AbZJPSaE (ORCPT ); Fri, 16 Oct 2009 14:30:04 -0400 Received: from hq-exchfe-4.corp.brocade.com (192.168.39.133) by HQ-EXEDGE-2.corp.brocade.com (192.168.39.208) with Microsoft SMTP Server (TLS) id 8.1.393.1; Fri, 16 Oct 2009 11:24:52 -0700 Received: from discus.brocade.com (192.168.126.240) by SJ-hub-1.brocade.com (192.168.39.225) with Microsoft SMTP Server id 8.1.393.1; Fri, 16 Oct 2009 11:24:58 -0700 Received: from blc-10-10.brocade.com (blc-10-10.brocade.com [10.2.2.245]) by discus.brocade.com (Postfix) with ESMTP id 61B5B328001; Fri, 16 Oct 2009 11:24:57 -0700 (PDT) Received: from blc-10-10.brocade.com (localhost.localdomain [127.0.0.1]) by blc-10-10.brocade.com (8.13.1/8.13.1) with ESMTP id n9GIOu0b010155; Fri, 16 Oct 2009 11:24:56 -0700 Received: (from rmody@localhost) by blc-10-10.brocade.com (8.13.1/8.13.1/Submit) id n9GIOu9A010151; Fri, 16 Oct 2009 11:24:56 -0700 Date: Fri, 16 Oct 2009 11:24:56 -0700 From: Rasesh Mody Message-ID: <200910161824.n9GIOu9A010151@blc-10-10.brocade.com> To: netdev@vger.kernel.org Subject: Subject: [PATCH 6/6] bna: Brocade 10Gb Ethernet device driver CC: amathur@brocade.com MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Rasesh Mody This is patch 6/6 which contains linux driver source for Brocade's BR1010/BR1020 10Gb CEE capable ethernet adapter. We wish this patch to be considered for inclusion in 2.6.32 Signed-off-by: Rasesh Mody --- Kconfig | 15 +++++++++++++++ Makefile | 1 + bna | 17 +++++++++++++++++ 3 files changed, 33 insertions(+) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff -ruP linux-2.6.32-rc4-orig/drivers/net/bna linux-2.6.32-rc4-mod/drivers/net/bna --- linux-2.6.32-rc4-orig/drivers/net/bna 1969-12-31 16:00:00.000000000 -0800 +++ linux-2.6.32-rc4-mod/drivers/net/bna 2009-10-16 10:36:26.005199000 -0700 @@ -0,0 +1,17 @@ +# +# Copyright (c) 2005-2008 Brocade Communications Systems, Inc. +# All rights reserved. +# + +obj-$(CONFIG_BNA) += bna.o + +bna-objs := bnad.o bnad_ethtool.o bna_fn.o bna_if.o bna_queue.o \ + bfad_fwimg.o bfa_csdebug.o bfa_sm.o \ + bfa_ioc.o bfa_timer.o \ + bfa_cee.o + +EXTRA_CFLAGS += -Idrivers/net/bna \ + -Idrivers/net/bna/include \ + -Idrivers/net/bna/include/cee \ + -Idrivers/net/bna/include/cna/pstats \ + -Idrivers/net/bna/include/cs diff -ruP linux-2.6.32-rc4-orig/drivers/net/Kconfig linux-2.6.32-rc4-mod/drivers/net/Kconfig --- linux-2.6.32-rc4-orig/drivers/net/Kconfig 2009-10-11 14:43:56.000000000 -0700 +++ linux-2.6.32-rc4-mod/drivers/net/Kconfig 2009-10-16 10:36:25.990206000 -0700 @@ -2757,6 +2757,21 @@ To compile this driver as a module, choose M here: the module will be called qlge. +config BNA + tristate "Brocade 1010/1020 10Gb Ethernet Driver support" + depends on PCI + ---help--- + This driver supports Brocade 1010/1020 10Gb CEE capable Ethernet + cards. + + To compile this driver as a module, choose M here: the module + will be called bna. + + For general information and support, go to the Brocade support + website at: + + + source "drivers/net/sfc/Kconfig" source "drivers/net/benet/Kconfig" diff -ruP linux-2.6.32-rc4-orig/drivers/net/Makefile linux-2.6.32-rc4-mod/drivers/net/Makefile --- linux-2.6.32-rc4-orig/drivers/net/Makefile 2009-10-11 14:43:56.000000000 -0700 +++ linux-2.6.32-rc4-mod/drivers/net/Makefile 2009-10-16 10:36:25.999196000 -0700 @@ -26,6 +26,7 @@ obj-$(CONFIG_ENIC) += enic/ obj-$(CONFIG_JME) += jme.o obj-$(CONFIG_BE2NET) += benet/ +obj-$(CONFIG_BNA) += bna/ gianfar_driver-objs := gianfar.o \ gianfar_ethtool.o \