From patchwork Thu Mar 14 21:56:42 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 2274001 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id B85C73FC8A for ; Thu, 14 Mar 2013 22:00:23 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UGG9c-0005di-8F; Thu, 14 Mar 2013 21:57:40 +0000 Received: from moutng.kundenserver.de ([212.227.17.10]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UGG8u-0005WF-9l for linux-arm-kernel@lists.infradead.org; Thu, 14 Mar 2013 21:56:57 +0000 Received: from wuerfel.lan (HSI-KBW-46-223-90-92.hsi.kabel-badenwuerttemberg.de [46.223.90.92]) by mrelayeu.kundenserver.de (node=mrbap0) with ESMTP (Nemesis) id 0Lj4vO-1UsLW90PwU-00dDFS; Thu, 14 Mar 2013 22:56:51 +0100 From: Arnd Bergmann To: linux-kernel@vger.kernel.org Subject: [PATCH] ethernet/tulip: DE4x5 needs VIRT_TO_BUS Date: Thu, 14 Mar 2013 22:56:42 +0100 Message-Id: <1363298204-8014-5-git-send-email-arnd@arndb.de> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1363298204-8014-1-git-send-email-arnd@arndb.de> References: <1363298204-8014-1-git-send-email-arnd@arndb.de> X-Provags-ID: V02:K0:z5zSgV3hV60gvN0GayKCOGtKfR8TzfoCILkSTvBwdrX RrEDEDCmdYWMGkgi7fQhFXcYTQaoa6bG/DD70Ke33hKDXouk03 FfkUWRKfttPh1AulRUpXsrfUJ0uE6wt/2vRf5VFCi5fiBFI5Ga GrDiNXr/E1dYHGfJWd5Zgw5jQsUS4eucFw8y0op2Dd4fDAzhH4 RXhYmk9xQeqIShTSuRxx2uhmIlvonlmPDajC2qJbKPFw0+L5M+ IKIFNRzEOa4rMZQ7WYd16VPj6ugLC3Ks/ol0lhGyahHWy+7ZS3 ypcEE4S09Bl7kxBeb1ureDflaCn1iZhHBFB1jX7NsqWXUuTEq9 YBzcKcj2EtypubQpuNYiH04pisfa962IbUnqUOhnQ X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130314_175656_598877_5D06BCD1 X-CRM114-Status: UNSURE ( 9.15 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [212.227.17.10 listed in list.dnswl.org] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: netdev@vger.kernel.org, Arnd Bergmann , linux-arm-kernel@lists.infradead.org, Grant Grundler X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org The automated ARM build tests have shown that the tulip de4x5 driver uses the old-style virt_to_bus() interface on some architectures. Alpha, Sparc and PowerPC did not hit this problem, because they use a different code path, and most other architectures actually do provide VIRT_TO_BUS. Signed-off-by: Arnd Bergmann Cc: Grant Grundler Cc: netdev@vger.kernel.org --- Please apply for 3.9 or 3.10, this one is not urgent drivers/net/ethernet/dec/tulip/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/ethernet/dec/tulip/Kconfig b/drivers/net/ethernet/dec/tulip/Kconfig index 0c37fb2..1df33c7 100644 --- a/drivers/net/ethernet/dec/tulip/Kconfig +++ b/drivers/net/ethernet/dec/tulip/Kconfig @@ -108,6 +108,7 @@ config TULIP_DM910X config DE4X5 tristate "Generic DECchip & DIGITAL EtherWORKS PCI/EISA" depends on (PCI || EISA) + depends on VIRT_TO_BUS || ALPHA || PPC || SPARC select CRC32 ---help--- This is support for the DIGITAL series of PCI/EISA Ethernet cards.