From 362f211f85aa5e0f7519fca599428e03b05cb05f Mon Sep 17 00:00:00 2001 From: Sergio Aguirre Date: Sun, 18 Jul 2010 01:47:41 -0500 Subject: [PATCH 68/75] mt9t112: Make context B stream unlimited frames Context A does this by default, so, only context B needs to be configured like this. Signed-off-by: Sergio Aguirre --- drivers/media/video/mt9t112.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/media/video/mt9t112.c b/drivers/media/video/mt9t112.c index 18d7ce5..3c516b4 100644 --- a/drivers/media/video/mt9t112.c +++ b/drivers/media/video/mt9t112.c @@ -771,6 +771,9 @@ static int mt9t112_goto_capture(const struct i2c_client *client) if (ret == 0x7) return 0; + /* Num Frames Run (B) */ + mt9t112_mcu_write(ret, client, VAR(27, 5), 0); + /* Go to capture mode */ mt9t112_mcu_write(ret, client, VAR8(1, 0), 2); do { -- 1.6.6.1