diff options
author | Koen Kooi <koen@openembedded.org> | 2010-06-26 16:02:07 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-06-26 16:51:48 +0200 |
commit | 3af603f108e78a8ba867fdcfab40dc1dbe2b0060 (patch) | |
tree | e804aa08332f13c08e0470402e7207f3231e3bab /recipes/linux/linux-omap-psp-2.6.32/cam/0021-mt9t111-Fix-max-supported-xclk.patch | |
parent | 2286da60bd6fab66f4dfef92d97609b3b8685a8a (diff) |
linux-omap-psp 2.6.32: add WIP camera drivers for the beagleboard xM
Diffstat (limited to 'recipes/linux/linux-omap-psp-2.6.32/cam/0021-mt9t111-Fix-max-supported-xclk.patch')
-rw-r--r-- | recipes/linux/linux-omap-psp-2.6.32/cam/0021-mt9t111-Fix-max-supported-xclk.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/recipes/linux/linux-omap-psp-2.6.32/cam/0021-mt9t111-Fix-max-supported-xclk.patch b/recipes/linux/linux-omap-psp-2.6.32/cam/0021-mt9t111-Fix-max-supported-xclk.patch new file mode 100644 index 0000000000..e63f5d9073 --- /dev/null +++ b/recipes/linux/linux-omap-psp-2.6.32/cam/0021-mt9t111-Fix-max-supported-xclk.patch @@ -0,0 +1,28 @@ +From 04f40f398ac899504e4836e78f8e791f98200cf2 Mon Sep 17 00:00:00 2001 +From: Sergio Aguirre <saaguirre@ti.com> +Date: Thu, 24 Jun 2010 17:43:23 -0500 +Subject: [PATCH 21/28] mt9t111: Fix max supported xclk + +According to Aptina documentation, the max should be 54 MHz, not 75 MHz. + +Signed-off-by: Sergio Aguirre <saaguirre@ti.com> +--- + include/media/mt9t111.h | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/include/media/mt9t111.h b/include/media/mt9t111.h +index aae3f99..cd34885 100644 +--- a/include/media/mt9t111.h ++++ b/include/media/mt9t111.h +@@ -42,7 +42,7 @@ + /*i2c adress for MT9T111*/ + #define MT9T111_I2C_ADDR (0x78 >> 1) + +-#define MT9T111_CLK_MAX (75000000) /* 75MHz */ ++#define MT9T111_CLK_MAX (54000000) /* 54MHz */ + #define MT9T111_CLK_MIN (6000000) /* 6Mhz */ + + #define MT9T111_I2C_CONFIG (1) +-- +1.6.6.1 + |