diff options
author | Sergio Aguirre <saaguirre@ti.com> | 2010-11-15 09:29:54 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-03-22 03:53:43 -0400 |
commit | cfe2cde6d33f15994ad34466ac4a08f5bb348948 (patch) | |
tree | 268ccc7ee2f2534d810b1c8705712636ecc12bea | |
parent | a11f6706ca4473c2df3f72a306d9b9fee6512a33 (diff) |
[media] omap2: Fix camera resources for multiomap
Make sure the kernel can be compiled with both OMAP2 and OMAP3 camera
support linked in, and give public symbols proper omap2/omap3 prefixes.
Signed-off-by: Sergio Aguirre <saaguirre@ti.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Acked-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | arch/arm/mach-omap2/devices.c | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index 6fd92eb9704..145c8f0f659 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c | |||
@@ -38,7 +38,7 @@ | |||
38 | 38 | ||
39 | #if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE) | 39 | #if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE) |
40 | 40 | ||
41 | static struct resource cam_resources[] = { | 41 | static struct resource omap2cam_resources[] = { |
42 | { | 42 | { |
43 | .start = OMAP24XX_CAMERA_BASE, | 43 | .start = OMAP24XX_CAMERA_BASE, |
44 | .end = OMAP24XX_CAMERA_BASE + 0xfff, | 44 | .end = OMAP24XX_CAMERA_BASE + 0xfff, |
@@ -50,21 +50,12 @@ static struct resource cam_resources[] = { | |||
50 | } | 50 | } |
51 | }; | 51 | }; |
52 | 52 | ||
53 | static struct platform_device omap_cam_device = { | 53 | static struct platform_device omap2cam_device = { |
54 | .name = "omap24xxcam", | 54 | .name = "omap24xxcam", |
55 | .id = -1, | 55 | .id = -1, |
56 | .num_resources = ARRAY_SIZE(cam_resources), | 56 | .num_resources = ARRAY_SIZE(omap2cam_resources), |
57 | .resource = cam_resources, | 57 | .resource = omap2cam_resources, |
58 | }; | 58 | }; |
59 | |||
60 | static inline void omap_init_camera(void) | ||
61 | { | ||
62 | platform_device_register(&omap_cam_device); | ||
63 | } | ||
64 | #else | ||
65 | static inline void omap_init_camera(void) | ||
66 | { | ||
67 | } | ||
68 | #endif | 59 | #endif |
69 | 60 | ||
70 | static struct resource omap3isp_resources[] = { | 61 | static struct resource omap3isp_resources[] = { |
@@ -157,6 +148,14 @@ int omap3_init_camera(struct isp_platform_data *pdata) | |||
157 | return platform_device_register(&omap3isp_device); | 148 | return platform_device_register(&omap3isp_device); |
158 | } | 149 | } |
159 | 150 | ||
151 | static inline void omap_init_camera(void) | ||
152 | { | ||
153 | #if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE) | ||
154 | if (cpu_is_omap24xx()) | ||
155 | platform_device_register(&omap2cam_device); | ||
156 | #endif | ||
157 | } | ||
158 | |||
160 | #if defined(CONFIG_OMAP_MBOX_FWK) || defined(CONFIG_OMAP_MBOX_FWK_MODULE) | 159 | #if defined(CONFIG_OMAP_MBOX_FWK) || defined(CONFIG_OMAP_MBOX_FWK_MODULE) |
161 | 160 | ||
162 | #define MBOX_REG_SIZE 0x120 | 161 | #define MBOX_REG_SIZE 0x120 |