在camera驱动中有这么一个结构变量:
static struct v4l2_i2c_driver_data v4l2_i2c_data = {
.name = "ov2655",
.probe = ov2655_probe,
.remove = ov2655_remove,
.id_table = ov2655_id,
}
除了这个之外,没有像其他模块一样的module_init等入口,也没有添加I2C驱动的接口,那此I2C驱动如何被probe到的呢?
这个驱动要被加载不可能没有入口,可奇怪的是根本找不到。呵呵,还好功夫不负有心人,最终还是有结果了!
原因是有这一句:#include <media/v4l2-i2c-drv.h>。
头文件里面的定义如下:
#ifndef __V4L2_I2C_DRV_H__
#define __V4L2_I2C_DRV_H__
#include <media/v4l2-common.h>
struct v4l2_i2c_driver_data {
const char * const name;
int (*command)(struct i2c_client *client, unsigned int cmd, void *arg);
int (*probe)(struct i2c_client *client, const struct i2c_device_id *id);
int (*remove)(struct i2c_client *client);
int (*suspend)(struct i2c_client *client, pm_message_t state);
int (*resume)(struct