Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933460AbcKLV5Q (ORCPT ); Sat, 12 Nov 2016 16:57:16 -0500 Received: from mail-wm0-f66.google.com ([74.125.82.66]:36037 "EHLO mail-wm0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754199AbcKLV4P (ORCPT ); Sat, 12 Nov 2016 16:56:15 -0500 Subject: Re: [PATCH 08/11] mtd: nand: denali: return error code from devm_request_irq() on error To: Masahiro Yamada , linux-mtd@lists.infradead.org References: <1478666130-13413-1-git-send-email-yamada.masahiro@socionext.com> <1478666130-13413-9-git-send-email-yamada.masahiro@socionext.com> Cc: Boris Brezillon , David Woodhouse , Richard Weinberger , Jason Roberts , linux-kernel@vger.kernel.org, Chuanxiao Dong , Cyrille Pitchen , Brian Norris , David Woodhouse , Dinh Nguyen , Alan Cox From: Marek Vasut Message-ID: <2e07f61f-1d93-cb41-f3b7-81481c058a5e@gmail.com> Date: Sat, 12 Nov 2016 22:39:46 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Icedove/45.4.0 MIME-Version: 1.0 In-Reply-To: <1478666130-13413-9-git-send-email-yamada.masahiro@socionext.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1526 Lines: 49 On 11/09/2016 05:35 AM, Masahiro Yamada wrote: > The devm_request_irq() returns an appropriate error value when it > fails. Use it instead of the fixed -ENODEV. > > While we are here, reword the comment to make it fit in a single > line, fixing the misspelling of "initialization". > > Signed-off-by: Masahiro Yamada > --- > > drivers/mtd/nand/denali.c | 12 +++++------- > 1 file changed, 5 insertions(+), 7 deletions(-) > > diff --git a/drivers/mtd/nand/denali.c b/drivers/mtd/nand/denali.c > index 44e075a..f188a48 100644 > --- a/drivers/mtd/nand/denali.c > +++ b/drivers/mtd/nand/denali.c > @@ -1451,14 +1451,12 @@ int denali_init(struct denali_nand_info *denali) > denali_hw_init(denali); > denali_drv_init(denali); > > - /* > - * denali_isr register is done after all the hardware > - * initilization is finished > - */ > - if (devm_request_irq(denali->dev, denali->irq, denali_isr, IRQF_SHARED, > - DENALI_NAND_NAME, denali)) { > + /* request IRQ after all the hardware initialization is finished */ You can use capital letter to start the sentence -- Request .... Otherwise: Reviewed-by: Marek Vasut > + ret = devm_request_irq(denali->dev, denali->irq, denali_isr, > + IRQF_SHARED, DENALI_NAND_NAME, denali); > + if (ret) { > dev_err(denali->dev, "Unable to request IRQ\n"); > - return -ENODEV; > + return ret; > } > > /* now that our ISR is registered, we can enable interrupts */ > -- Best regards, Marek Vasut