/* * Generic Platform Camera Driver Header * * Copyright (C) 2008 Magnus Damm * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #ifndef __SOC_CAMERA_H__ #define __SOC_CAMERA_H__ #include <linux/videodev2.h> #include <media/soc_camera.h> #include <media/v4l2-mediabus.h> struct device; struct soc_camera_platform_info { const char *format_name; unsigned long format_depth; struct v4l2_mbus_framefmt format; unsigned long mbus_param; enum v4l2_mbus_type mbus_type; struct soc_camera_device *icd; int (*set_capture)(struct soc_camera_platform_info *info, int enable); };
static inline void soc_camera_platform_release(struct platform_device **pdev) { *pdev = NULL; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Guennadi Liakhovetski | 18 | 100.00% | 1 | 100.00% |
Total | 18 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Guennadi Liakhovetski | 170 | 100.00% | 3 | 100.00% |
Total | 170 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Guennadi Liakhovetski | 58 | 100.00% | 3 | 100.00% |
Total | 58 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Guennadi Liakhovetski | 270 | 85.99% | 8 | 80.00% |
Magnus Damm | 44 | 14.01% | 2 | 20.00% |
Total | 314 | 100.00% | 10 | 100.00% |