diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2009-08-25 10:28:22 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-09-18 23:18:27 -0400 |
commit | 40e2e0927003424c25807b575dd40da2b8685857 (patch) | |
tree | 917ca8fd5f7598194d264ec92a08b312d4932b90 /include/media/soc_camera.h | |
parent | bc1937b41d8253e2b554da385023a92189d38917 (diff) |
V4L/DVB (12506): soc-camera: convert to platform device
Convert soc-camera core and all drivers to platform device API. We already
converted platforms to register a platform device for each soc-camera client,
now we remove the compatibility code and switch completely to the new scheme.
This is a preparatory step for the v4l2-subdev conversion.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media/soc_camera.h')
-rw-r--r-- | include/media/soc_camera.h | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/include/media/soc_camera.h b/include/media/soc_camera.h index 813e12061daa..d8b4256126a4 100644 --- a/include/media/soc_camera.h +++ b/include/media/soc_camera.h | |||
@@ -20,7 +20,6 @@ | |||
20 | struct soc_camera_device { | 20 | struct soc_camera_device { |
21 | struct list_head list; | 21 | struct list_head list; |
22 | struct device dev; | 22 | struct device dev; |
23 | struct device *control; | ||
24 | unsigned short width; /* Current window */ | 23 | unsigned short width; /* Current window */ |
25 | unsigned short height; /* sizes */ | 24 | unsigned short height; /* sizes */ |
26 | unsigned short x_min; /* Camera capabilities */ | 25 | unsigned short x_min; /* Camera capabilities */ |
@@ -131,17 +130,25 @@ static inline struct soc_camera_host *to_soc_camera_host(struct device *dev) | |||
131 | return dev_get_drvdata(dev); | 130 | return dev_get_drvdata(dev); |
132 | } | 131 | } |
133 | 132 | ||
134 | extern int soc_camera_host_register(struct soc_camera_host *ici); | 133 | static inline struct soc_camera_link *to_soc_camera_link(struct soc_camera_device *icd) |
135 | extern void soc_camera_host_unregister(struct soc_camera_host *ici); | 134 | { |
136 | extern int soc_camera_device_register(struct soc_camera_device *icd); | 135 | return icd->dev.platform_data; |
137 | extern void soc_camera_device_unregister(struct soc_camera_device *icd); | 136 | } |
138 | 137 | ||
139 | extern int soc_camera_video_start(struct soc_camera_device *icd); | 138 | static inline struct device *to_soc_camera_control(struct soc_camera_device *icd) |
140 | extern void soc_camera_video_stop(struct soc_camera_device *icd); | 139 | { |
140 | return dev_get_drvdata(&icd->dev); | ||
141 | } | ||
141 | 142 | ||
142 | extern const struct soc_camera_data_format *soc_camera_format_by_fourcc( | 143 | int soc_camera_host_register(struct soc_camera_host *ici); |
144 | void soc_camera_host_unregister(struct soc_camera_host *ici); | ||
145 | |||
146 | int soc_camera_video_start(struct soc_camera_device *icd, struct device *dev); | ||
147 | void soc_camera_video_stop(struct soc_camera_device *icd); | ||
148 | |||
149 | const struct soc_camera_data_format *soc_camera_format_by_fourcc( | ||
143 | struct soc_camera_device *icd, unsigned int fourcc); | 150 | struct soc_camera_device *icd, unsigned int fourcc); |
144 | extern const struct soc_camera_format_xlate *soc_camera_xlate_by_fourcc( | 151 | const struct soc_camera_format_xlate *soc_camera_xlate_by_fourcc( |
145 | struct soc_camera_device *icd, unsigned int fourcc); | 152 | struct soc_camera_device *icd, unsigned int fourcc); |
146 | 153 | ||
147 | struct soc_camera_data_format { | 154 | struct soc_camera_data_format { |
@@ -170,8 +177,6 @@ struct soc_camera_format_xlate { | |||
170 | 177 | ||
171 | struct soc_camera_ops { | 178 | struct soc_camera_ops { |
172 | struct module *owner; | 179 | struct module *owner; |
173 | int (*probe)(struct soc_camera_device *); | ||
174 | void (*remove)(struct soc_camera_device *); | ||
175 | int (*suspend)(struct soc_camera_device *, pm_message_t state); | 180 | int (*suspend)(struct soc_camera_device *, pm_message_t state); |
176 | int (*resume)(struct soc_camera_device *); | 181 | int (*resume)(struct soc_camera_device *); |
177 | int (*init)(struct soc_camera_device *); | 182 | int (*init)(struct soc_camera_device *); |