Skip to content
Snippets Groups Projects
Commit 18aa68d3 authored by Gabor Juhos's avatar Gabor Juhos
Browse files

ar71xx: check returned value of ioremap in ar71xx_pcibios_setup

SVN-Revision: 20288
parent 73f7a1c2
No related branches found
No related tags found
No related merge requests found
......@@ -384,6 +384,8 @@ int __init ar71xx_pcibios_init(void)
ar71xx_pcicfg_base = ioremap_nocache(AR71XX_PCI_CFG_BASE,
AR71XX_PCI_CFG_SIZE);
if (ar71xx_pcicfg_base == NULL)
return -ENOMEM;
__raw_writel(PCI_WIN0_OFFS, ddr_base + AR71XX_DDR_REG_PCI_WIN0);
__raw_writel(PCI_WIN1_OFFS, ddr_base + AR71XX_DDR_REG_PCI_WIN1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment