Hi! On Tue 2019-11-19 06:17:19, Greg Kroah-Hartman wrote: > > [ Upstream commit 17a0a1e5f6c4bd6df17834312ff577c1373d87b8 ] > > Check return value of devm_pci_remap_iospace(). > > index c5ff6ca65eab2..0d100f56cb884 100644 > --- a/drivers/pci/controller/pcie-mediatek.c > +++ b/drivers/pci/controller/pcie-mediatek.c > @@ -1120,7 +1120,9 @@ static int mtk_pcie_request_resources(struct mtk_pcie *pcie) > if (err < 0) > return err; > > - devm_pci_remap_iospace(dev, &pcie->pio, pcie->io.start); > + err = devm_pci_remap_iospace(dev, &pcie->pio, pcie->io.start); > + if (err) > + return err; > > return 0; > } You can just do return devm_pci_remap_iospace(dev, &pcie->pio, pcie->io.start); instead. No need for if ()... Best regards, Pavel -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html