From patchwork Thu Feb 21 17:08:12 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 1046311 X-Patchwork-Delegate: promsoft@gmail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="vwXi86Cn"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 4451C868KQz9sBr for ; Fri, 22 Feb 2019 04:08:36 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 8DC33C220FA; Thu, 21 Feb 2019 17:08:33 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 4E366C21E68; Thu, 21 Feb 2019 17:08:31 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id E9D69C21E68; Thu, 21 Feb 2019 17:08:29 +0000 (UTC) Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by lists.denx.de (Postfix) with ESMTPS id 7E10FC21E42 for ; Thu, 21 Feb 2019 17:08:29 +0000 (UTC) Received: from localhost.localdomain (unknown [194.230.155.153]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 9684C2077B; Thu, 21 Feb 2019 17:08:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1550768908; bh=8HIjqYZlIZCW/e0HeODSbPAlQEB05hKziK0A3VVZ6UY=; h=From:To:Cc:Subject:Date:From; b=vwXi86CnDf75neX3fYfUzRsCvOL1YgcwgTmHJR0kqev5NQB3VrfLfEdA4tmqrQfb1 4EDvfNZfUgOFVbfO6+vdbelUivx5yV0gpTz3aWnPZjCdIpcji8A8sF0eyzjdItE2IN scmRKxnZO9FgHvZACrPV7HQZE1C3ijPzUBFTfRIY= From: Krzysztof Kozlowski To: Chander Kashyap , Simon Glass , Krzysztof Kozlowski , u-boot@lists.denx.de, Minkyu Kang , Lukasz Majewski , Seung-Woo Kim , Marek Szyprowski Date: Thu, 21 Feb 2019 18:08:12 +0100 Message-Id: <20190221170812.20001-1-krzk@kernel.org> X-Mailer: git-send-email 2.17.1 Cc: Rene Griessl Subject: [U-Boot] [RFT] configs: arndale: Use appropriate driver for Asix AX88760 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Arndale board has an Asix AX88760 USB 2.0 Hub and Fast Ethernet combo. The appropriate driver for it is USB_ETHER_ASIX. The mistake probably came from misinterpretation of commit e9954b867ce0 ("usb: eth: add ASIX AX88179 DRIVER") which was tested on RECS5250 COM module. This module indeed has Exynos5250 and some similarities with Arndale 5250 board but the USB/Ethernet chip used there is apparently different. Fixes: f58ad98a621c ("usb: net: migrate USB Ethernet adapters to Kconfig") Signed-off-by: Krzysztof Kozlowski Reviewed-by: Lukasz Majewski --- Not tested. --- configs/arndale_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/arndale_defconfig b/configs/arndale_defconfig index 24422645cbac..b1f20b915889 100644 --- a/configs/arndale_defconfig +++ b/configs/arndale_defconfig @@ -41,4 +41,4 @@ CONFIG_USB_XHCI_HCD=y CONFIG_USB_XHCI_DWC3=y CONFIG_USB_EHCI_HCD=y CONFIG_USB_HOST_ETHER=y -CONFIG_USB_ETHER_ASIX88179=y +CONFIG_USB_ETHER_ASIX=y