diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2008-10-16 18:49:27 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-17 16:25:29 -0400 |
commit | 50c616fd0b43f50379aa70da96fd350312367367 (patch) | |
tree | 5cbbbcebc9deac66406a86e53c475e00fb3da6e6 /drivers/media | |
parent | 2a1d245b70f3f966f96767aaea1a2db6823e2f6e (diff) |
V4L/DVB (9241): soc-camera: move sensor power management to soc_camera_platform.c
Switching sensors on and off is now done by sensor drivers themselves,
typically using platform-provided hooks. Update soc_camera_platform.c to
do the same. Also remove a refundant struct soc_camera_platform_info
definition from soc_camera_platform.c.
Tested-by: Magnus Damm <damm@igel.co.jp>
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/soc_camera_platform.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/drivers/media/video/soc_camera_platform.c b/drivers/media/video/soc_camera_platform.c index 1adc257ebdb9..bb7a9d480e8f 100644 --- a/drivers/media/video/soc_camera_platform.c +++ b/drivers/media/video/soc_camera_platform.c | |||
@@ -18,15 +18,7 @@ | |||
18 | #include <linux/videodev2.h> | 18 | #include <linux/videodev2.h> |
19 | #include <media/v4l2-common.h> | 19 | #include <media/v4l2-common.h> |
20 | #include <media/soc_camera.h> | 20 | #include <media/soc_camera.h> |
21 | 21 | #include <media/soc_camera_platform.h> | |
22 | struct soc_camera_platform_info { | ||
23 | int iface; | ||
24 | char *format_name; | ||
25 | unsigned long format_depth; | ||
26 | struct v4l2_pix_format format; | ||
27 | unsigned long bus_param; | ||
28 | int (*set_capture)(struct soc_camera_platform_info *info, int enable); | ||
29 | }; | ||
30 | 22 | ||
31 | struct soc_camera_platform_priv { | 23 | struct soc_camera_platform_priv { |
32 | struct soc_camera_platform_info *info; | 24 | struct soc_camera_platform_info *info; |
@@ -44,11 +36,21 @@ soc_camera_platform_get_info(struct soc_camera_device *icd) | |||
44 | 36 | ||
45 | static int soc_camera_platform_init(struct soc_camera_device *icd) | 37 | static int soc_camera_platform_init(struct soc_camera_device *icd) |
46 | { | 38 | { |
39 | struct soc_camera_platform_info *p = soc_camera_platform_get_info(icd); | ||
40 | |||
41 | if (p->power) | ||
42 | p->power(1); | ||
43 | |||
47 | return 0; | 44 | return 0; |
48 | } | 45 | } |
49 | 46 | ||
50 | static int soc_camera_platform_release(struct soc_camera_device *icd) | 47 | static int soc_camera_platform_release(struct soc_camera_device *icd) |
51 | { | 48 | { |
49 | struct soc_camera_platform_info *p = soc_camera_platform_get_info(icd); | ||
50 | |||
51 | if (p->power) | ||
52 | p->power(0); | ||
53 | |||
52 | return 0; | 54 | return 0; |
53 | } | 55 | } |
54 | 56 | ||