greybus: fix gb_manifest_parse() successful return path
authorMatt Porter <mporter@linaro.org>
Mon, 6 Oct 2014 17:46:36 +0000 (13:46 -0400)
committerGreg Kroah-Hartman <greg@kroah.com>
Mon, 6 Oct 2014 17:50:51 +0000 (10:50 -0700)
Even if we successfully parse a manifest we are returning
failure. Instead, we now proudly proclaim success.

Signed-off-by: Matt Porter <mporter@linaro.org>
Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
drivers/staging/greybus/manifest.c

index 43ece74..09fcde9 100644 (file)
@@ -364,6 +364,7 @@ bool gb_manifest_parse(struct gb_module *gmod, void *data, size_t size)
                if (desc_size <= 0) {
                        if (!desc_size)
                                pr_err("zero-sized manifest descriptor\n");
+                       result = false;
                        goto out;
                }
                desc = (struct greybus_descriptor *)((char *)desc + desc_size);
@@ -379,6 +380,7 @@ bool gb_manifest_parse(struct gb_module *gmod, void *data, size_t size)
        if (found != 1) {
                pr_err("manifest must have 1 module descriptor (%u found)\n",
                        found);
+               result = false;
                goto out;
        }
 
@@ -394,5 +396,5 @@ bool gb_manifest_parse(struct gb_module *gmod, void *data, size_t size)
 out:
        release_manifest_descriptors();
 
-       return false;
+       return result;
 }