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 X-Spam-Level: X-Spam-Status: No, score=-5.3 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 404CDC433E0 for ; Thu, 9 Jul 2020 15:03:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 226662077D for ; Thu, 9 Jul 2020 15:03:42 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=nvidia.com header.i=@nvidia.com header.b="AtfD/Bm2" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726806AbgGIPDi (ORCPT ); Thu, 9 Jul 2020 11:03:38 -0400 Received: from hqnvemgate26.nvidia.com ([216.228.121.65]:17855 "EHLO hqnvemgate26.nvidia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726795AbgGIPDi (ORCPT ); Thu, 9 Jul 2020 11:03:38 -0400 Received: from hqpgpgate101.nvidia.com (Not Verified[216.228.121.13]) by hqnvemgate26.nvidia.com (using TLS: TLSv1.2, DES-CBC3-SHA) id ; Thu, 09 Jul 2020 08:03:25 -0700 Received: from hqmail.nvidia.com ([172.20.161.6]) by hqpgpgate101.nvidia.com (PGP Universal service); Thu, 09 Jul 2020 08:03:38 -0700 X-PGP-Universal: processed; by hqpgpgate101.nvidia.com on Thu, 09 Jul 2020 08:03:38 -0700 Received: from [10.19.64.157] (10.124.1.5) by HQMAIL107.nvidia.com (172.20.187.13) with Microsoft SMTP Server (TLS) id 15.0.1473.3; Thu, 9 Jul 2020 15:03:35 +0000 Subject: Re: [PATCH v3 5/6] gpio: max77620: Use irqchip template To: Dmitry Osipenko , Thierry Reding , Jonathan Hunter , "Bartosz Golaszewski" , Linus Walleij , Andy Shevchenko References: <20200708202355.28507-1-digetx@gmail.com> <20200708202355.28507-6-digetx@gmail.com> CC: , , From: Laxman Dewangan Message-ID: Date: Thu, 9 Jul 2020 20:33:02 +0530 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <20200708202355.28507-6-digetx@gmail.com> X-Originating-IP: [10.124.1.5] X-ClientProxiedBy: HQMAIL105.nvidia.com (172.20.187.12) To HQMAIL107.nvidia.com (172.20.187.13) Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nvidia.com; s=n1; t=1594307005; bh=WA0Hc1Bmgkm7tjyfkdDpk4Pgpzcd4AVZYEuUhiRRU6k=; h=X-PGP-Universal:Subject:To:References:CC:From:Message-ID:Date: User-Agent:MIME-Version:In-Reply-To:X-Originating-IP: X-ClientProxiedBy:Content-Type:Content-Transfer-Encoding; b=AtfD/Bm2Ia2gOJjfOdEbGwPx7fQ/gFH30jRLpvEf/fNv5H1+bExjPpG858/mSVQ2X pLKmP2Xs8WG6e1vJ1yYlWV/DEpVPfLMRqJf3OhyKy5Dpqe7aJKcjfs7RZa39NZetLg IYnZQeoIQmg/sa2jOA0rCY+wwbmuduu0rtR/9DXKO7B9aNJWdsJQ38Ox01/mnqOMbY wDGeNyyvpkzrOOe92EWXT0wKAxLn8lzAE68fSbOA54B9nFSLpKbDUPCfZW9EhME9yd D07QZVk8V+5sviCYI7z0Cpvy2EnRHBIfJuDEbBsOaNTeHmzX9Wi3n8THjsjF8ogu+w HNGZaA5Mz7U1Q== Sender: linux-gpio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org On Thursday 09 July 2020 01:53 AM, Dmitry Osipenko wrote: > External email: Use caution opening links or attachments > > > This change addresses one of the GPIO-core TODOs for the MAX77620 driver > which requires modern drivers to use the irqchip template. Instead of > using the GPIO's irqchip-helpers for creating the IRQ domain, the > gpio_irq_chip structure is now filled by the driver itself and then > gpiochip_add_data() takes care of instantiating the IRQ domain for us. > > Suggested-by: Andy Shevchenko > Signed-off-by: Dmitry Osipenko > Looks good to me. Acked-by: Laxman Dewangan