mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-25 13:26:57 +00:00
07e8c30da9
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
30 lines
888 B
Diff
30 lines
888 B
Diff
From 54295e317df7f12a7b9e4f5a55f4801717863bb1 Mon Sep 17 00:00:00 2001
|
|
From: Sergio Aguirre <saaguirre@ti.com>
|
|
Date: Fri, 9 Jul 2010 16:22:38 -0500
|
|
Subject: [PATCH 33/75] mt9v113: Fix wrong active widths
|
|
|
|
Signed-off-by: Sergio Aguirre <saaguirre@ti.com>
|
|
---
|
|
include/media/mt9v113.h | 4 ++--
|
|
1 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/include/media/mt9v113.h b/include/media/mt9v113.h
|
|
index c7ad362..0a30f4c 100644
|
|
--- a/include/media/mt9v113.h
|
|
+++ b/include/media/mt9v113.h
|
|
@@ -35,9 +35,9 @@
|
|
#define MT9V113_MODULE_NAME "mt9v113"
|
|
|
|
/* Number of pixels and number of lines per frame for different standards */
|
|
-#define VGA_NUM_ACTIVE_PIXELS (640*2)
|
|
+#define VGA_NUM_ACTIVE_PIXELS (640)
|
|
#define VGA_NUM_ACTIVE_LINES (480)
|
|
-#define QVGA_NUM_ACTIVE_PIXELS (320*2)
|
|
+#define QVGA_NUM_ACTIVE_PIXELS (320)
|
|
#define QVGA_NUM_ACTIVE_LINES (240)
|
|
|
|
/**
|
|
--
|
|
1.6.6.1
|
|
|