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 80CB4C433EF for ; Tue, 28 Sep 2021 06:30:38 +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 BD9FC61153 for ; Tue, 28 Sep 2021 06:30:37 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org BD9FC61153 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 E6C6982DB3; Tue, 28 Sep 2021 08:30:35 +0200 (CEST) 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=1632810636; bh=Bii1N3fawWHMqbtYlk+s/8LNzxjC0MGoT7oNEbb8lZQ=; h=Subject:From:To:Cc:References:Date:In-Reply-To:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: Reply-To:From; b=V+RDpNDFuJ0OzENxgdZMMRUUyeBlUAxlL4eV1NIsSJD9f3waBZ0xTfIfQvGCQ61QU Yy02sQ4zjzujiMOzMoNhYBEZKapVS59W23k2eDx08NUjGp2R63/MGsX+ZNf59nJJM4 73L7IRP52BcNG9+qSy7PPkPMKnAmovSwA8s0o1T1Ej0vlSGcCcIdwzb5APOHLhgkS3 l3ZzV7FVWV7J1JkiFsUwDcUuC+K0mKUY6mge+NrST0qH3vOSdnhpydUfI2hg+yulRN gctPZ7QQfizD863XCFXrFiXw2VVchaXN/t20mFwWGDirEuUI44mcfGUEDObTJMut/W nYEDbrY/ngzAw== Received: from [192.168.1.107] (82-131-156-90.pool.digikabel.hu [82.131.156.90]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: hs@denx.de) by phobos.denx.de (Postfix) with ESMTPSA id 704F382DB3; Tue, 28 Sep 2021 08:30:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1632810631; bh=Bii1N3fawWHMqbtYlk+s/8LNzxjC0MGoT7oNEbb8lZQ=; h=Reply-To:Subject:From:To:Cc:References:Date:In-Reply-To:From; b=hZmttI846K30n50lQcBovLtgBAn4MFdtQRvw8gxIf7r3TW4sJ2aQXqYpUqBPdfM56 Tre/caSHt0WTV0EaG3NovvG5LCUasZ5uiwt7YfIRqIfH6BTQC+FD2Bv7Y6MNVEU3hD r8H7YUNtvP5YvoBaERcxEEEwreXnjE/kMiI6Z3GH4HK0PPq6bg+YfTqu/n7t0ST+8Y oGRSE4yDRwPCi7OieghTloCGP7vDapnB9InqvuOy5qF85rN0pA8aYbc8JJb4iWBiUm 5w3So3DNvoU1e6/KWkMw6VSsoCh4c7QhoQh6+OLoGkCkJh1tkKDNDamPsbRKLHjVUa rUGZagZ9c3wZQ== Subject: Re: [PATCH] i2c: mvtwsi: Add support for DM clocks and resets From: Heiko Schocher To: Samuel Holland , u-boot@lists.denx.de Cc: Jagan Teki , Andre Przywara References: <20210912152140.40552-1-samuel@sholland.org> Message-ID: <3413303d-4e1a-d1f3-73b7-6d22b054fb83@denx.de> Date: Tue, 28 Sep 2021 08:30:34 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.34 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: hs@denx.de 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 Hello Samuel, On 21.09.21 06:43, Heiko Schocher wrote: > Hello Samuel, > > On 12.09.21 17:21, Samuel Holland wrote: >> The controller may need to have clocks/resets enabled for it to work. >> Add support for this. Since the clocks/resets are optional on some >> platforms (per the device tree binding), do not prevent probing the >> controller if they are missing. >> >> Signed-off-by: Samuel Holland >> --- >> >> drivers/i2c/mvtwsi.c | 13 +++++++++++++ >> 1 file changed, 13 insertions(+) > > Reviewed-by: Heiko Schocher Applied to u-boot-i2c next Thanks! bye, Heiko > > bye, > Heiko > -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-52 Fax: +49-8142-66989-80 Email: hs@denx.de