1
0
Fork 0

mtd: rawnand: denali_pci: rename goto labels

As Documentation/process/coding-style.rst says, choose label names
which say what the goto does. The out_<action> label style is already
used in denali_dt.c. Rename likewise for denali_pci.c

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
hifive-unleashed-5.2
Masahiro Yamada 2019-04-02 13:03:06 +09:00 committed by Miquel Raynal
parent f4f16fd3e7
commit 13defd4734
1 changed files with 4 additions and 4 deletions

View File

@ -84,20 +84,20 @@ static int denali_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
if (!denali->host) {
dev_err(&dev->dev, "Spectra: ioremap_nocache failed!");
ret = -ENOMEM;
goto failed_remap_reg;
goto out_unmap_reg;
}
ret = denali_init(denali);
if (ret)
goto failed_remap_mem;
goto out_unmap_host;
pci_set_drvdata(dev, denali);
return 0;
failed_remap_mem:
out_unmap_host:
iounmap(denali->host);
failed_remap_reg:
out_unmap_reg:
iounmap(denali->reg);
return ret;
}