Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2732ba56 authored by Rasesh Mody's avatar Rasesh Mody Committed by David S. Miller
Browse files

bna: QLogic BR-series Adapters Driver Rebranding



Re-brand the BNA driver to QLogic.

Signed-off-by: default avatarRasesh Mody <rasesh.mody@qlogic.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bb39b743
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
#
# Brocade device configuration
# QLogic BR-series device configuration
#

config NET_VENDOR_BROCADE
	bool "Brocade devices"
	bool "QLogic BR-series devices"
	default y
	depends on PCI
	---help---
@@ -13,8 +13,8 @@ config NET_VENDOR_BROCADE

	  Note that the answer to this question doesn't directly affect the
	  kernel: saying N will just cause the configurator to skip all
	  the questions about Brocade cards. If you say Y, you will be asked for
	  your specific card in the following questions.
	  the questions about QLogic BR-series cards. If you say Y, you will be
	  asked for your specific card in the following questions.

if NET_VENDOR_BROCADE

+1 −1
Original line number Diff line number Diff line
#
# Makefile for the Brocade device drivers.
# Makefile for the QLogic BR-series device drivers.
#

obj-$(CONFIG_BNA) += bna/
+6 −6
Original line number Diff line number Diff line
#
# Brocade network device configuration
# QLogic BR-series network device configuration
#

config BNA
	tristate "Brocade 1010/1020 10Gb Ethernet Driver support"
	tristate "QLogic BR-series 1010/1020/1860 10Gb Ethernet Driver support"
	depends on PCI
	---help---
	  This driver supports Brocade 1010/1020 10Gb CEE capable Ethernet
	  cards.
	  This driver supports QLogic BR-series 1010/1020/1860 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
	  For general information and support, go to the QLogic support
	  website at:

	  <http://support.brocade.com>
	  <http://support.qlogic.com>
+2 −1
Original line number Diff line number Diff line
#
# Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
# Copyright (c) 2005-2014 Brocade Communications Systems, Inc.
# Copyright (c) 2014-2015 QLogic Corporation.
# All rights reserved.
#

+4 −3
Original line number Diff line number Diff line
/*
 * Linux network driver for Brocade Converged Network Adapter.
 * Linux network driver for QLogic BR-series Converged Network Adapter.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License (GPL) Version 2 as
@@ -11,9 +11,10 @@
 * General Public License for more details.
 */
/*
 * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
 * Copyright (c) 2005-2014 Brocade Communications Systems, Inc.
 * Copyright (c) 2014-2015 QLogic Corporation
 * All rights reserved
 * www.brocade.com
 * www.qlogic.com
 */

#include "bfa_cee.h"
Loading