mtd: parser: imagetag: fix error codes in bcm963xx_parse_imagetag_partitions()
[linux-2.6-microblaze.git] / drivers / mtd / parsers / parser_imagetag.c
index d69607b..fab0949 100644 (file)
@@ -83,6 +83,7 @@ static int bcm963xx_parse_imagetag_partitions(struct mtd_info *master,
                        pr_err("invalid rootfs address: %*ph\n",
                                (int)sizeof(buf->flash_image_start),
                                buf->flash_image_start);
+                       ret = -EINVAL;
                        goto out;
                }
 
@@ -92,6 +93,7 @@ static int bcm963xx_parse_imagetag_partitions(struct mtd_info *master,
                        pr_err("invalid kernel address: %*ph\n",
                                (int)sizeof(buf->kernel_address),
                                buf->kernel_address);
+                       ret = -EINVAL;
                        goto out;
                }
 
@@ -100,6 +102,7 @@ static int bcm963xx_parse_imagetag_partitions(struct mtd_info *master,
                        pr_err("invalid kernel length: %*ph\n",
                                (int)sizeof(buf->kernel_length),
                                buf->kernel_length);
+                       ret = -EINVAL;
                        goto out;
                }
 
@@ -108,6 +111,7 @@ static int bcm963xx_parse_imagetag_partitions(struct mtd_info *master,
                        pr_err("invalid total length: %*ph\n",
                                (int)sizeof(buf->total_length),
                                buf->total_length);
+                       ret = -EINVAL;
                        goto out;
                }