aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/maps
diff options
context:
space:
mode:
authorRoel Kluin <roel.kluin@gmail.com>2009-11-11 15:47:06 -0500
committerDavid Woodhouse <David.Woodhouse@intel.com>2009-11-30 04:51:44 -0500
commit895fb49459227edbb4a4e5a2b5e9d12c34640f84 (patch)
treec6d8ce92b3c3a9797bdb8c8196a671402b829f87 /drivers/mtd/maps
parentb2ef1a2bb2eb49cd7c75b22f1ea40ead0bdfdb8a (diff)
mtd: error return -EIO instead of EIO
Return a negative error value instead of a positive Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/maps')
-rw-r--r--drivers/mtd/maps/physmap.c2
-rw-r--r--drivers/mtd/maps/vmu-flash.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/maps/physmap.c b/drivers/mtd/maps/physmap.c
index 3f13a9673e7f..d9603f7f9652 100644
--- a/drivers/mtd/maps/physmap.c
+++ b/drivers/mtd/maps/physmap.c
@@ -129,7 +129,7 @@ static int physmap_flash_probe(struct platform_device *dev)
129 info->map[i].size); 129 info->map[i].size);
130 if (info->map[i].virt == NULL) { 130 if (info->map[i].virt == NULL) {
131 dev_err(&dev->dev, "Failed to ioremap flash region\n"); 131 dev_err(&dev->dev, "Failed to ioremap flash region\n");
132 err = EIO; 132 err = -EIO;
133 goto err_out; 133 goto err_out;
134 } 134 }
135 135
diff --git a/drivers/mtd/maps/vmu-flash.c b/drivers/mtd/maps/vmu-flash.c
index 1008462c3f7c..82afad0ddd72 100644
--- a/drivers/mtd/maps/vmu-flash.c
+++ b/drivers/mtd/maps/vmu-flash.c
@@ -620,7 +620,7 @@ static int __devinit vmu_connect(struct maple_device *mdev)
620 620
621 card = kmalloc(sizeof(struct memcard), GFP_KERNEL); 621 card = kmalloc(sizeof(struct memcard), GFP_KERNEL);
622 if (!card) { 622 if (!card) {
623 error = ENOMEM; 623 error = -ENOMEM;
624 goto fail_nomem; 624 goto fail_nomem;
625 } 625 }
626 626