From mboxrd@z Thu Jan 1 00:00:00 1970 From: lorenzo.pieralisi@arm.com (Lorenzo Pieralisi) Date: Tue, 18 Sep 2018 15:35:54 +0100 Subject: [PATCH] PCI: meson: fix ptr_ret.cocci warnings In-Reply-To: <20180814114518.GA82641@lkp-ib04> References: <1534227522-186798-3-git-send-email-hanjie.lin@amlogic.com> <20180814114518.GA82641@lkp-ib04> Message-ID: <20180918143554.GC32243@e107981-ln.cambridge.arm.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Tue, Aug 14, 2018 at 07:45:18PM +0800, kbuild test robot wrote: > From: kbuild test robot > > drivers/pci/controller/dwc/pci-meson.c:121:1-3: WARNING: PTR_ERR_OR_ZERO can be used > > > Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR > > Generated by: scripts/coccinelle/api/ptr_ret.cocci > > Fixes: b43bb00f7533 ("PCI: meson: add the Amlogic Meson PCIe controller driver") > CC: Yue Wang > Signed-off-by: kbuild test robot > --- > > pci-meson.c | 5 +---- > 1 file changed, 1 insertion(+), 4 deletions(-) I have dropped this patch from the PCI patch queue since it was taken into account in updated patches versions, thanks for sending it. Thanks, Lorenzo > --- a/drivers/pci/controller/dwc/pci-meson.c > +++ b/drivers/pci/controller/dwc/pci-meson.c > @@ -118,10 +118,7 @@ static int meson_pcie_get_mem(struct pla > return -ENODEV; > > mp->mem_res.cfg_base = devm_ioremap_resource(dev, res); > - if (IS_ERR(mp->mem_res.cfg_base)) > - return PTR_ERR(mp->mem_res.cfg_base); > - > - return 0; > + return PTR_ERR_OR_ZERO(mp->mem_res.cfg_base); > } > > static int meson_pcie_init_clk(struct meson_pcie *mp)