From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id F0BBFC433EF for ; Mon, 23 May 2022 08:42:14 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 89BD383EF9; Mon, 23 May 2022 10:42:12 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="JQZU3rb9"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 5AB1F83F24; Mon, 23 May 2022 10:42:10 +0200 (CEST) Received: from sin.source.kernel.org (sin.source.kernel.org [IPv6:2604:1380:40e1:4800::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id BBB7083E8E for ; Mon, 23 May 2022 10:42:07 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id 076FDCE1293; Mon, 23 May 2022 08:42:05 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 76D9DC34116; Mon, 23 May 2022 08:42:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1653295324; bh=Kvi3Dl7E2ows09IN2u6OUir6siIZ6urxzCebYqQdhcA=; h=From:To:Cc:Subject:Date:From; b=JQZU3rb9xZb1671Gr8hPUfiSo9BTWaHoHWcYdkyaeVQVIGgTLJwPjxMCz9S2+WTEA riY0fxehcGJwpDKwnZthQgyY45WHSWL8wYpIFLeOaZdcOHeL42ZMZEVqDg0cmL6m7S xI6LS1cZ1+t0PHe/XmQFUGf701rqKP0FJ+vtjFK100ZRlhE5pnqdc5HqBcodENLqL3 /Rf7jH0xgWVRgOTRkf7ExBNLwumsW6c5L/evg+8ZJTBfNWTLo2XbGyOE0pI+3xsG2e XLzrFyn4s7TMdPHd/QlzjcQ9yMQnrV7oqLrnTgVbSS8W1ZJ9X4V2nBB/zg79hvC2pl WQFCorhChKtMA== Received: by pali.im (Postfix) id 7BDD5A43; Mon, 23 May 2022 10:42:01 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Joe Hershberger , Ramon Fried Cc: u-boot@lists.denx.de Subject: [PATCH] net: Add missing PCI dependency for CONFIG_E1000 Date: Mon, 23 May 2022 10:41:49 +0200 Message-Id: <20220523084149.3715-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean Signed-off-by: Pali Rohár --- drivers/net/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 7fe0e00649cf..84d859c21eb8 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -231,6 +231,7 @@ config DWC_ETH_QOS_TEGRA186 config E1000 bool "Intel PRO/1000 Gigabit Ethernet support" + depends on PCI help This driver supports Intel(R) PRO/1000 gigabit ethernet family of adapters. For more information on how to identify your adapter, go -- 2.20.1