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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id EC88EC61DA4 for ; Mon, 13 Mar 2023 17:50:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230327AbjCMRuO (ORCPT ); Mon, 13 Mar 2023 13:50:14 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45172 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229861AbjCMRuM (ORCPT ); Mon, 13 Mar 2023 13:50:12 -0400 Received: from mail11.truemail.it (mail11.truemail.it [IPv6:2001:4b7e:0:8::81]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A6A6579B25; Mon, 13 Mar 2023 10:49:57 -0700 (PDT) Received: from francesco-nb.int.toradex.com (93-49-2-63.ip317.fastwebnet.it [93.49.2.63]) by mail11.truemail.it (Postfix) with ESMTPA id 6731E20765; Mon, 13 Mar 2023 18:49:55 +0100 (CET) Date: Mon, 13 Mar 2023 18:49:50 +0100 From: Francesco Dolcini To: Andy Shevchenko , Bartosz Golaszewski Cc: Francesco Dolcini , linux-gpio@vger.kernel.org, Linus Walleij , Emanuele Ghidoli , linux-kernel@vger.kernel.org, Francesco Dolcini Subject: Re: [PATCH v3 2/2] gpio: fxl6408: add I2C GPIO expander driver Message-ID: References: <20230313170950.256964-1-francesco@dolcini.it> <20230313170950.256964-3-francesco@dolcini.it> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Mar 13, 2023 at 07:35:20PM +0200, Andy Shevchenko wrote: > On Mon, Mar 13, 2023 at 7:09 PM Francesco Dolcini wrote: > > > > From: Emanuele Ghidoli > > > > Add minimal driver for Fairchild FXL6408 8-bit I2C-controlled GPIO expander > > using the generic regmap based GPIO driver (GPIO_REGMAP). > > > > The driver implements setting the GPIO direction, reading inputs > > and writing outputs. > > > > In addition to that the FXL6408 has the following functionalities: > > - allows to monitor input ports for data transitions with an interrupt pin > > - all inputs can be configured with pull-up or pull-down resistors > > Reviewed-by: Andy Shevchenko Thanks for the review, appreciated. > > +#include > > +#include > > +#include > > +#include > > Seems unordered? Whoops :-/ Bartosz: if you or others have additional comments I'll change this for sure, if not up to you - please let me know. Francesco