lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <CA+uqrQBfS4J7r==za_82ddErGXVK+smJaMjbhPq6DByDWYyC-g@mail.gmail.com> Date: Mon, 12 Dec 2022 16:19:56 +0900 From: Kang Minchul <tegongkang@...il.com> To: Heiner Kallweit <hkallweit1@...il.com> Cc: Alex Elder <elder@...nel.org>, "David S . Miller" <davem@...emloft.net>, Jakub Kicinski <kuba@...nel.org>, netdev@...r.kernel.org, linux-kernel@...r.kernel.org Subject: Re: [PATCH] net: ipa: Remove redundant dev_err() 2022년 12월 12일 (월) 오전 1:34, Heiner Kallweit <hkallweit1@...il.com>님이 작성: > > On 11.12.2022 15:47, Kang Minchul wrote: > > Function dev_err() is redundant because platform_get_irq_byname() > > already prints an error. > > > > Signed-off-by: Kang Minchul <tegongkang@...il.com> > > --- > > drivers/net/ipa/gsi.c | 5 +---- > > 1 file changed, 1 insertion(+), 4 deletions(-) > > > > diff --git a/drivers/net/ipa/gsi.c b/drivers/net/ipa/gsi.c > > index 55226b264e3c..585cfd3f9ec0 100644 > > --- a/drivers/net/ipa/gsi.c > > +++ b/drivers/net/ipa/gsi.c > > @@ -1967,11 +1967,8 @@ int gsi_init(struct gsi *gsi, struct platform_device *pdev, bool prefetch, > > > > /* Get the GSI IRQ and request for it to wake the system */ > > ret = platform_get_irq_byname(pdev, "gsi"); > > - if (ret <= 0) { > > - dev_err(gsi->dev, > > - "DT error %d getting \"gsi\" IRQ property\n", ret); > > + if (ret <= 0) > > According to the function description it can't return 0. > You can further simplify the code. > And you patch should be annotated net-next. Thanks for your feedback! I just amended and sent v2. Regards, Kang Minchul
Powered by blists - more mailing lists