All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [media] s5p-fimc: Fix incorrect condition in fimc_lite_reqbufs()
@ 2012-09-25 11:19 Sachin Kamat
  2012-09-25 13:39 ` Sylwester Nawrocki
  0 siblings, 1 reply; 3+ messages in thread
From: Sachin Kamat @ 2012-09-25 11:19 UTC (permalink / raw)
  To: linux-media; +Cc: mchehab, s.nawrocki, sachin.kamat, patches

When precedence rules are applied, the condition always evaluates
to be false which was not the intention. Adding the missing braces
for correct evaluation of the expression and subsequent functionality.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/media/platform/s5p-fimc/fimc-lite.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/media/platform/s5p-fimc/fimc-lite.c b/drivers/media/platform/s5p-fimc/fimc-lite.c
index 9289008..20e5e24 100644
--- a/drivers/media/platform/s5p-fimc/fimc-lite.c
+++ b/drivers/media/platform/s5p-fimc/fimc-lite.c
@@ -825,7 +825,7 @@ static int fimc_lite_reqbufs(struct file *file, void *priv,
 
 	reqbufs->count = max_t(u32, FLITE_REQ_BUFS_MIN, reqbufs->count);
 	ret = vb2_reqbufs(&fimc->vb_queue, reqbufs);
-	if (!ret < 0)
+	if (!(ret < 0))
 		fimc->reqbufs_count = reqbufs->count;
 
 	return ret;
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-09-25 15:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-25 11:19 [PATCH] [media] s5p-fimc: Fix incorrect condition in fimc_lite_reqbufs() Sachin Kamat
2012-09-25 13:39 ` Sylwester Nawrocki
2012-09-25 15:28   ` Sachin Kamat

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.