From: Philipp Zabel <[email protected]>

Set the context color space when s_fmt succeeded, not when it failed.

Signed-off-by: Philipp Zabel <[email protected]>
---
 drivers/media/platform/coda/coda-common.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/media/platform/coda/coda-common.c 
b/drivers/media/platform/coda/coda-common.c
index e84b320..dfecb86 100644
--- a/drivers/media/platform/coda/coda-common.c
+++ b/drivers/media/platform/coda/coda-common.c
@@ -504,7 +504,9 @@ static int coda_s_fmt_vid_out(struct file *file, void *priv,
 
        ret = coda_s_fmt(ctx, f);
        if (ret)
-               ctx->colorspace = f->fmt.pix.colorspace;
+               return ret;
+
+       ctx->colorspace = f->fmt.pix.colorspace;
 
        return ret;
 }
-- 
2.0.1

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to