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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 54D59C433EF for ; Thu, 18 Nov 2021 08:20:33 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id 0009861361 for ; Thu, 18 Nov 2021 08:20:32 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 0009861361 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=lists.denx.de Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id AFFF582F7E; Thu, 18 Nov 2021 09:20:30 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1637223631; bh=wzvnefRXIanX20dAbuDvVnmhCw+bvrifz9j6T5ySbSg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=w0bDBHngJuCIXLqUlR1NJ9qFZ4eQYq7s92EDM/JPyuZzD6Mmy13/EKznPFOt8g+Yq 0+mNBLwY2GSjioZPIumJ5JSGA3iwK1mJEr+PaXMb9Y5ZlapF3wEbfYLIX5jakKqzy4 azBI8NgFNnu3TfKOtLzmrBGelFAWPGfRPrPMn0G3Hrd/oKtH72RNJh0nuVfH2gXiRZ aIf68+Oh+UuyoYxI8FBSzER/09Qlxu0mK36TX/vPQ+DjE6nCKuIazXqiV2PKBKLubq Axrr7GLF/4O/tF5vUKR4b2z/LJ2rWmQnS9GaxvbKE2zJ0e0Ow256l8G8d4KV7B4IkP z9nLcPbkBO92A== Received: by phobos.denx.de (Postfix, from userid 109) id 8257982F74; Thu, 18 Nov 2021 09:19:52 +0100 (CET) Received: from mout-u-204.mailbox.org (mout-u-204.mailbox.org [IPv6:2001:67c:2050:1::465:204]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id BDA6282F83 for ; Thu, 18 Nov 2021 09:19:44 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: phobos.denx.de; spf=fail smtp.mailfrom=sr@denx.de Received: from smtp202.mailbox.org (unknown [91.198.250.118]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-u-204.mailbox.org (Postfix) with ESMTPS id 4Hvt4w4tDpzQlCK; Thu, 18 Nov 2021 09:19:44 +0100 (CET) From: Stefan Roese To: u-boot@lists.denx.de Cc: Phil Sutter Subject: [PATCH 3/9] arm: mvebu: ds414_defconfig: Enable DM_I2C Date: Thu, 18 Nov 2021 09:19:33 +0100 Message-Id: <20211118081939.861407-3-sr@denx.de> In-Reply-To: <20211118081939.861407-1-sr@denx.de> References: <20211118081939.861407-1-sr@denx.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.35 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.2 at phobos.denx.de X-Virus-Status: Clean Move to the DM I2C version, so that this board will not get dropped from mainline. Signed-off-by: Stefan Roese Cc: Phil Sutter --- configs/ds414_defconfig | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/configs/ds414_defconfig b/configs/ds414_defconfig index 4b867bcbe642..df143cdf6522 100644 --- a/configs/ds414_defconfig +++ b/configs/ds414_defconfig @@ -53,10 +53,8 @@ CONFIG_USE_ENV_SPI_MAX_HZ=y CONFIG_ENV_SPI_MAX_HZ=50000000 CONFIG_SYS_RELOC_GD_ENV_ADDR=y CONFIG_SPL_OF_TRANSLATE=y -CONFIG_SYS_I2C_LEGACY=y -CONFIG_SPL_SYS_I2C_LEGACY=y +CONFIG_DM_I2C=y CONFIG_SYS_I2C_MVTWSI=y -CONFIG_SYS_I2C_SLAVE=0x0 # CONFIG_MMC is not set CONFIG_MTD=y CONFIG_SPI_FLASH_STMICRO=y -- 2.34.0