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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id D9BC1C433EF for ; Mon, 28 Feb 2022 05:27:21 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 5D89583BD9; Mon, 28 Feb 2022 06:27:19 +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=1646026039; bh=/dhC/9a2I7Tyzu+1n/ibaxYaUdWehhxolSHt7c1DEg8=; h=Subject:To:Cc:References:From:Date:In-Reply-To:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: Reply-To:From; b=MSVtvWn9q16G+27Htm6t3UW8+NofNVGW8AB6RGUVODw/x1QSvQsmlGWAmofNp/ce5 RMtbD+7YweloDkTAdUB/yYZNe3QCcOfDN1wgzPS9VQqUKPYqMnsT7sNbsfvUYaOOCY c5peaoV85Y8VT3ZOPFlLXJ8PnLmT0jUEthRr4lCMIa3NfxnWuSqqXbHKLKLM3gOIP0 dQMqM/FDnluxBM8iJ24YCEozwXalL1j/Ga4be/yWrmW3bXO2jZJ/G3jTgjaMuYK+KO ZZObyZpiH35qP9SgNW5vD8JaIMrvieFbUf+pkSZ72NWa/z0UTclB/m6PjjqNtwYmcP NwWAdCB0a/FXw== Received: from [192.168.1.107] (82-131-158-25.pool.digikabel.hu [82.131.158.25]) (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 0B92D838BF; Mon, 28 Feb 2022 06:27:15 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1646026037; bh=/dhC/9a2I7Tyzu+1n/ibaxYaUdWehhxolSHt7c1DEg8=; h=Reply-To:Subject:To:Cc:References:From:Date:In-Reply-To:From; b=AchvMmoUD/UmIby4ZH36l0xVsPaV8fRaVdtzpPUKz2aeC5QCCQrLWAEOOGyX3zLZz MiDIjpvbUZ6PHFmOKJoSOvRv1hAe5HkLqXpBhDuMMKmylz9EHjrvZdUauGppqAyf0l /8E79lrukQ6Jv+RbnLpt8F8nhB5OIIJ9BDX7MSbFwrABi9KWB70vw5294jnypAEk06 IIg56T4XWTFjZ5ePLK8G4wXdZHoQVgoRVt4RuiICk570dxm3grZmBylUbyYdzedD6S opHKE/4kPif/PanFRZGVxrgWwdDzaCcTvrypFw4w1zqSWIEBxA3cKHV2KcWVeKm/08 2ffkRDWUr0/8A== Subject: Re: [PATCH] gpio: slg7xl45106: Add support for slg7xl45106 i2c gpo expander To: Michal Simek , u-boot@lists.denx.de, git@xilinx.com Cc: T Karthik Reddy , Hannes Schmelzer , Oleksandr Suvorov , Sebastian Reichel , Simon Glass , Stephan Gerhold References: <839f475cc75c97ffb3496a4caa93de2faabdbca2.1645629688.git.michal.simek@xilinx.com> From: Heiko Schocher Message-ID: Date: Mon, 28 Feb 2022 06:27:22 +0100 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: <839f475cc75c97ffb3496a4caa93de2faabdbca2.1645629688.git.michal.simek@xilinx.com> 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.39 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.5 at phobos.denx.de X-Virus-Status: Clean Hello Michal, On 23.02.22 16:21, Michal Simek wrote: > From: T Karthik Reddy > > slg7xl45106 is i2c based 8-bit gpo expander, gpo pins are set and get by > writing and reading corresponding gpo bit value into its data register. > > Signed-off-by: T Karthik Reddy > Signed-off-by: Michal Simek > --- > > MAINTAINERS | 1 + > drivers/gpio/Kconfig | 8 +++ > drivers/gpio/Makefile | 1 + > drivers/gpio/gpio_slg7xl45106.c | 115 ++++++++++++++++++++++++++++++++ > 4 files changed, 125 insertions(+) > create mode 100644 drivers/gpio/gpio_slg7xl45106.c Reviewed-by: Heiko Schocher Nitpick only, fix typo in subject s/gpo/gpio 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