aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2010-02-02 17:45:54 -0500
committerJesse Barnes <jbarnes@virtuousgeek.org>2010-02-22 19:17:19 -0500
commitba02b242bbf8e4e1bc63d62e8ccec33b4e5ea132 (patch)
treed81b48ebf427e0ee346582b8f92ced6017ce9015
parent939fdc67350e15aeeea70457d5b4bc1116bb4fd5 (diff)
PCI hotplug: check ioremap() return value in ibmphp_ebda.c
check ioremap() return value. Cc: <stable@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
-rw-r--r--drivers/pci/hotplug/ibmphp_ebda.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/pci/hotplug/ibmphp_ebda.c b/drivers/pci/hotplug/ibmphp_ebda.c
index 7d3bf31d224d..5becbdee4027 100644
--- a/drivers/pci/hotplug/ibmphp_ebda.c
+++ b/drivers/pci/hotplug/ibmphp_ebda.c
@@ -261,6 +261,8 @@ int __init ibmphp_access_ebda (void)
261 debug ("returned ebda segment: %x\n", ebda_seg); 261 debug ("returned ebda segment: %x\n", ebda_seg);
262 262
263 io_mem = ioremap(ebda_seg<<4, 1); 263 io_mem = ioremap(ebda_seg<<4, 1);
264 if (!io_mem)
265 return -ENOMEM;
264 ebda_sz = readb(io_mem); 266 ebda_sz = readb(io_mem);
265 iounmap(io_mem); 267 iounmap(io_mem);
266 debug("ebda size: %d(KiB)\n", ebda_sz); 268 debug("ebda size: %d(KiB)\n", ebda_sz);