Browse Source

powerpc/fsl_msi: return proper error value when ioremap failed.

Signed-off-by: Liu Shuo <soniccat.liu@gmail.com>
Acked-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Liu Shuo 13 years ago
parent
commit
b53804c702
1 changed files with 1 additions and 0 deletions
  1. 1 0
      arch/powerpc/sysdev/fsl_msi.c

+ 1 - 0
arch/powerpc/sysdev/fsl_msi.c

@@ -410,6 +410,7 @@ static int __devinit fsl_of_msi_probe(struct platform_device *dev)
 
 
 		msi->msi_regs = ioremap(res.start, resource_size(&res));
 		msi->msi_regs = ioremap(res.start, resource_size(&res));
 		if (!msi->msi_regs) {
 		if (!msi->msi_regs) {
+			err = -ENOMEM;
 			dev_err(&dev->dev, "could not map node %s\n",
 			dev_err(&dev->dev, "could not map node %s\n",
 				dev->dev.of_node->full_name);
 				dev->dev.of_node->full_name);
 			goto error_out;
 			goto error_out;