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 F13C1C433F5 for ; Thu, 18 Nov 2021 08:19:51 +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 16521600EF for ; Thu, 18 Nov 2021 08:19:51 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 16521600EF 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 5AE3E82F8E; Thu, 18 Nov 2021 09:19:49 +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=1637223589; bh=6LDp4hcrGA1FK12w008bmxBVDF4U+Dbmp5L+XKDJ0oE=; h=From:To:Subject:Date:In-Reply-To:References:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=k/N5XAx2iY79FeQ5heBZah3Qs0lP33o+BZ7PGMs8ZWxyPWJgcPXNmbG9f57e24oE/ fl2WEKoSYn9WLyQQD4zZgxMQw2jUn4dKUrN2gch2W0Ol2A+s/Ssf+VHu8F9+sqU0rh FQ9LBeCeqL7/ghszAjQ+YW3HjG1gYgXES2nb1750hXUO1R4r/UNIrNE5xoUoWKRY1L Sq1yhIJJOqkrk3rMt/ss4oTO+Fqk6vlxj1ggfgEI8q4mrKH/hcvBzb7AaarPvDJFgx Nmmqn2HX1l/nMlTQoh4Ji17guSpNor3utv6y0DNSLZ2YiQRZ/pMZweFglpSDMglSHm fGdZzoVcyaXOw== Received: by phobos.denx.de (Postfix, from userid 109) id B08E682F75; Thu, 18 Nov 2021 09:19:46 +0100 (CET) Received: from mout-u-107.mailbox.org (mout-u-107.mailbox.org [IPv6:2001:67c:2050:1::465:107]) (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 5122B82F5D 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-107.mailbox.org (Postfix) with ESMTPS id 4Hvt4v1pTwzQl9X for ; Thu, 18 Nov 2021 09:19:43 +0100 (CET) From: Stefan Roese To: u-boot@lists.denx.de Subject: [PATCH 2/9] arm: mvebu: db-mv784mp-gp_defconfig: Enable DM_I2C Date: Thu, 18 Nov 2021 09:19:32 +0100 Message-Id: <20211118081939.861407-2-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/db-mv784mp-gp_defconfig | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/configs/db-mv784mp-gp_defconfig b/configs/db-mv784mp-gp_defconfig index b82b637c23d5..6a11aa0ecb8c 100644 --- a/configs/db-mv784mp-gp_defconfig +++ b/configs/db-mv784mp-gp_defconfig @@ -50,10 +50,8 @@ CONFIG_ENV_SPI_MAX_HZ=50000000 CONFIG_SYS_RELOC_GD_ENV_ADDR=y CONFIG_SPL_OF_TRANSLATE=y CONFIG_SATA_MV=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_MTD_RAW_NAND=y -- 2.34.0