From patchwork Tue Dec 8 22:14:55 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kirsher, Jeffrey T" X-Patchwork-Id: 40682 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 533C1B6F10 for ; Wed, 9 Dec 2009 09:15:21 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966713AbZLHWPH (ORCPT ); Tue, 8 Dec 2009 17:15:07 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S966711AbZLHWPH (ORCPT ); Tue, 8 Dec 2009 17:15:07 -0500 Received: from qmta13.emeryville.ca.mail.comcast.net ([76.96.27.243]:59669 "EHLO QMTA13.emeryville.ca.mail.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S966706AbZLHWPF (ORCPT ); Tue, 8 Dec 2009 17:15:05 -0500 Received: from OMTA08.emeryville.ca.mail.comcast.net ([76.96.30.12]) by QMTA13.emeryville.ca.mail.comcast.net with comcast id ElkV1d0090FhH24ADmFDqu; Tue, 08 Dec 2009 22:15:13 +0000 Received: from localhost.localdomain ([63.64.152.142]) by OMTA08.emeryville.ca.mail.comcast.net with comcast id EmEw1d00A34bfcX8UmEy29; Tue, 08 Dec 2009 22:15:11 +0000 From: Jeff Kirsher Subject: [RFC PATCH 06/12] ixgbe: Add SR-IOV specific modules to driver Makefile To: netdev@vger.kernel.org Cc: gospo@redhat.com, Greg Rose , Peter P Waskiewicz Jr , Jeff Kirsher Date: Tue, 08 Dec 2009 14:14:55 -0800 Message-ID: <20091208221454.28373.78622.stgit@localhost.localdomain> In-Reply-To: <20091208221258.28373.16663.stgit@localhost.localdomain> References: <20091208221258.28373.16663.stgit@localhost.localdomain> User-Agent: StGIT/0.14.3 MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Greg Rose Add the mailbox and SR-IOV feature modules to the ixgbe driver Makefile. Signed-off-by: Greg Rose Acked-by: Peter P Waskiewicz Jr Signed-off-by: Jeff Kirsher --- drivers/net/ixgbe/Makefile | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) -- 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 --git a/drivers/net/ixgbe/Makefile b/drivers/net/ixgbe/Makefile index 21b41f4..1dd867d 100644 --- a/drivers/net/ixgbe/Makefile +++ b/drivers/net/ixgbe/Makefile @@ -33,7 +33,8 @@ obj-$(CONFIG_IXGBE) += ixgbe.o ixgbe-objs := ixgbe_main.o ixgbe_common.o ixgbe_ethtool.o \ - ixgbe_82599.o ixgbe_82598.o ixgbe_phy.o + ixgbe_82599.o ixgbe_82598.o ixgbe_phy.o ixgbe_sriov.o \ + ixgbe_mbx.o ixgbe-$(CONFIG_IXGBE_DCB) += ixgbe_dcb.o ixgbe_dcb_82598.o \ ixgbe_dcb_82599.o ixgbe_dcb_nl.o