From patchwork Fri Oct 31 07:41:43 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kirsher, Jeffrey T" X-Patchwork-Id: 6677 X-Patchwork-Delegate: jgarzik@pobox.com 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 35593DDE06 for ; Fri, 31 Oct 2008 18:42:11 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750914AbYJaHmJ (ORCPT ); Fri, 31 Oct 2008 03:42:09 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750810AbYJaHmI (ORCPT ); Fri, 31 Oct 2008 03:42:08 -0400 Received: from qmta02.emeryville.ca.mail.comcast.net ([76.96.30.24]:36511 "EHLO QMTA02.emeryville.ca.mail.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750800AbYJaHmH (ORCPT ); Fri, 31 Oct 2008 03:42:07 -0400 Received: from OMTA14.emeryville.ca.mail.comcast.net ([76.96.30.60]) by QMTA02.emeryville.ca.mail.comcast.net with comcast id ZKhG1a0011HpZEsA2Ki6Tm; Fri, 31 Oct 2008 07:42:06 +0000 Received: from gitlost.lost ([63.64.152.142]) by OMTA14.emeryville.ca.mail.comcast.net with comcast id ZKhj1a00334bfcX8aKhrYH; Fri, 31 Oct 2008 07:42:03 +0000 X-Authority-Analysis: v=1.0 c=1 a=oUOy3tc9LLKaVO6-1-YA:9 a=YbLaxqlRjY66-U4f-xFLhPCKJ18A:4 a=dGJ0OcVc7YAA:10 a=SLyJqc_wJIIA:10 a=XF7b4UCPwd8A:10 From: Jeff Kirsher Subject: [PATCH] net: kconfig cleanup To: jeff@garzik.org Cc: netdev@vger.kernel.org, davem@davemloft.net, Jeff Kirsher , Andrew Gallatin Date: Fri, 31 Oct 2008 00:41:43 -0700 Message-ID: <20081031074143.25532.6078.stgit@gitlost.lost> 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 The bool kconfig option added to ixgbe and myri10ge for DCA is ambigous, so this patch adds a description to the kconfig option. Signed-off-by: Jeff Kirsher CC: Andrew Gallatin --- drivers/net/Kconfig | 4 ++-- 1 files changed, 2 insertions(+), 2 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/Kconfig b/drivers/net/Kconfig index f749b40..b13a7ff 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -2437,7 +2437,7 @@ config IXGBE will be called ixgbe. config IXGBE_DCA - bool + bool "Enable DCA" default y depends on IXGBE && DCA && !(IXGBE=y && DCA=m) @@ -2489,7 +2489,7 @@ config MYRI10GE will be called myri10ge. config MYRI10GE_DCA - bool + bool "Enable DCA" default y depends on MYRI10GE && DCA && !(MYRI10GE=y && DCA=m)