diff options
| author | Liu Shuo <[email protected]> | 2012-03-08 22:47:37 +0000 |
|---|---|---|
| committer | Kumar Gala <[email protected]> | 2012-03-16 15:46:31 +0000 |
| commit | b53804c70258000026d0b68b86aaecd571f2ba8b (patch) | |
| tree | 00ff5de3dde0903786bb5091f54fbef56571ca3f /arch/powerpc/sysdev/fsl_msi.c | |
| parent | powerpc/85xx: fix typo in p1010rdb.dtsi (diff) | |
| download | kernel-b53804c70258000026d0b68b86aaecd571f2ba8b.tar.gz kernel-b53804c70258000026d0b68b86aaecd571f2ba8b.zip | |
powerpc/fsl_msi: return proper error value when ioremap failed.
Signed-off-by: Liu Shuo <[email protected]>
Acked-by: Timur Tabi <[email protected]>
Signed-off-by: Kumar Gala <[email protected]>
Diffstat (limited to 'arch/powerpc/sysdev/fsl_msi.c')
| -rw-r--r-- | arch/powerpc/sysdev/fsl_msi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/sysdev/fsl_msi.c b/arch/powerpc/sysdev/fsl_msi.c index ecb5c1946d22..0bab15626ee2 100644 --- a/arch/powerpc/sysdev/fsl_msi.c +++ b/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)); if (!msi->msi_regs) { + err = -ENOMEM; dev_err(&dev->dev, "could not map node %s\n", dev->dev.of_node->full_name); goto error_out; |
