mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-26 22:07:51 +00:00
07e8c30da9
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
31 lines
956 B
Diff
31 lines
956 B
Diff
From 00bfc925651aa2c35a1726f15c028ef106f350ab Mon Sep 17 00:00:00 2001
|
|
From: Sergio Aguirre <saaguirre@ti.com>
|
|
Date: Thu, 24 Jun 2010 17:31:49 -0500
|
|
Subject: [PATCH 16/75] omap3beagle: camera: Fix wrong XCLKA selection
|
|
|
|
The CAM_USE_XCLKA should have been 0 instead of 1.
|
|
|
|
Otherwise it was activating XCLKB instead!
|
|
|
|
Signed-off-by: Sergio Aguirre <saaguirre@ti.com>
|
|
---
|
|
arch/arm/mach-omap2/board-omap3beagle-camera.c | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/arch/arm/mach-omap2/board-omap3beagle-camera.c b/arch/arm/mach-omap2/board-omap3beagle-camera.c
|
|
index 1652f15..75c8345 100644
|
|
--- a/arch/arm/mach-omap2/board-omap3beagle-camera.c
|
|
+++ b/arch/arm/mach-omap2/board-omap3beagle-camera.c
|
|
@@ -47,7 +47,7 @@
|
|
|
|
#define MODULE_NAME "omap3beaglelmb"
|
|
|
|
-#define CAM_USE_XCLKA 1
|
|
+#define CAM_USE_XCLKA 0
|
|
|
|
static struct regulator *beagle_mt9t111_reg1;
|
|
static struct regulator *beagle_mt9t111_reg2;
|
|
--
|
|
1.6.6.1
|
|
|