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 0AF49C433F5 for ; Thu, 18 Nov 2021 08:20:16 +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 854BE600EF for ; Thu, 18 Nov 2021 08:20:15 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 854BE600EF 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 808FE82F8C; Thu, 18 Nov 2021 09:20:12 +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=1637223613; bh=bXInXb6mq05p8CaMpv+SbCs1FAyY9TY/BUHlOqRB7D8=; h=From:To:Subject:Date:In-Reply-To:References:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=kBnY67Kv+m97ZICFe/WSjb0vuFHN9+gvgZ7kLNN5gsX6FPLStmSQIPyFEliuE+ikT 7UzmL7oQowkFok7FMk4Ah42G9gIPcO+wVXU+3+aFa1y7vhVmTY5hrPuCDBdaWbBl9+ /DKDSr7Y7o10VQMPbV+clmkYrW82GSC53dNcnvQ60B/1fqx2+9IC138w78WqXffypA dPXxG+8m9ihD4jZgIBE0ULrWtajP4Eo7sGzvwJalmtNLHGdvEEQY/xulenZNRGrjYD R9BeHh/qtgRV3s5ezd4JSyMqDJM94SK4cbd58bRpSyhnN5uX6n8nl00ehNhE+Z6LEa imkZytqhfcuAA== Received: by phobos.denx.de (Postfix, from userid 109) id 291B382F93; Thu, 18 Nov 2021 09:19:52 +0100 (CET) Received: from mout-u-204.mailbox.org (mout-u-204.mailbox.org [91.198.250.253]) (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 DE09E82F7D for ; Thu, 18 Nov 2021 09:19:43 +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 4Hvt4v5m7szQlCK for ; Thu, 18 Nov 2021 09:19:43 +0100 (CET) From: Stefan Roese To: u-boot@lists.denx.de Subject: [PATCH 4/9] arm: mvebu: maxbcm_defconfig: Enable DM_I2C Date: Thu, 18 Nov 2021 09:19:34 +0100 Message-Id: <20211118081939.861407-4-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 --- configs/maxbcm_defconfig | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/configs/maxbcm_defconfig b/configs/maxbcm_defconfig index ce870c91c78a..9fa2f5134b2b 100644 --- a/configs/maxbcm_defconfig +++ b/configs/maxbcm_defconfig @@ -37,10 +37,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_SPI_FLASH_MACRONIX=y CONFIG_SPI_FLASH_SPANSION=y -- 2.34.0