diff options
author | Saul Wold <Saul.Wold@intel.com> | 2010-09-24 15:36:24 -0700 |
---|---|---|
committer | Saul Wold <Saul.Wold@intel.com> | 2010-09-24 16:43:21 -0700 |
commit | 239a368d5715d8f5b7733f9400339c2350c49369 (patch) | |
tree | 2953f12b45e590d9e14b6f72f8e4ee7188e41508 /meta/recipes-kernel/linux/linux-netbook-2.6.33.2/linux-2.6.34-hack-to-fix-aava-camera-sensor-issue.patch | |
parent | c5b9525263dac6844d152e40acf8cee4d27b60bc (diff) | |
download | poky-239a368d5715d8f5b7733f9400339c2350c49369.tar.gz |
netbook: Correct netbook build by moving netbook configuration from moblin to meta
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Diffstat (limited to 'meta/recipes-kernel/linux/linux-netbook-2.6.33.2/linux-2.6.34-hack-to-fix-aava-camera-sensor-issue.patch')
-rw-r--r-- | meta/recipes-kernel/linux/linux-netbook-2.6.33.2/linux-2.6.34-hack-to-fix-aava-camera-sensor-issue.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-netbook-2.6.33.2/linux-2.6.34-hack-to-fix-aava-camera-sensor-issue.patch b/meta/recipes-kernel/linux/linux-netbook-2.6.33.2/linux-2.6.34-hack-to-fix-aava-camera-sensor-issue.patch new file mode 100644 index 0000000000..c7e1a5372e --- /dev/null +++ b/meta/recipes-kernel/linux/linux-netbook-2.6.33.2/linux-2.6.34-hack-to-fix-aava-camera-sensor-issue.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From 67b3a2d6716bfa9d308b26729a2cdeeffb6e8218 Mon Sep 17 00:00:00 2001 | ||
2 | From: Prajwal Mohan <prajwal.karur.mohan@intel.com> | ||
3 | Date: Thu, 13 May 2010 16:39:43 -0700 | ||
4 | Subject: [PATCH] dirty hack to fix aava camera sensor issue | ||
5 | |||
6 | Signed-off-by: Prajwal Mohan <prajwal.karur.mohan@intel.com> | ||
7 | Patch-mainline: 2.6.34 | ||
8 | --- | ||
9 | drivers/media/video/mrstci/mrstov2650/mrstov2650.c | 4 ++++ | ||
10 | 1 files changed, 4 insertions(+), 0 deletions(-) | ||
11 | |||
12 | diff --git a/drivers/media/video/mrstci/mrstov2650/mrstov2650.c b/drivers/media/video/mrstci/mrstov2650/mrstov2650.c | ||
13 | index 7f0d478..ce24139 100644 | ||
14 | --- a/drivers/media/video/mrstci/mrstov2650/mrstov2650.c | ||
15 | +++ b/drivers/media/video/mrstci/mrstov2650/mrstov2650.c | ||
16 | @@ -1111,7 +1111,11 @@ static int ov2650_detect(struct i2c_client *client) | ||
17 | ov2650_wakeup(); | ||
18 | |||
19 | ov2650_read(client, OV2650_PID_L, &value); | ||
20 | + #ifdef CONFIG_MRST_DRM_AAVA | ||
21 | + if (value != 0x66) | ||
22 | + #else | ||
23 | if (value != 0x52) | ||
24 | + #endif | ||
25 | return -ENODEV; | ||
26 | |||
27 | return 0; | ||
28 | -- | ||
29 | 1.6.2.5 | ||
30 | |||