感谢mindee ,我看了28内核的开源代码,在28内核中,965x的驱动是通过调用s3c_fimc实现的。比如说在
static void ov965x_start(struct i2c_client *client)
{
int i;
//printk("[CAM] OV965X init reg start...\n");
for (i = 0; i < OV965X_INIT_REGS; i++) {
s3c_fimc_i2c_write(client, OV965X_init_reg.subaddr, \
OV965X_init_reg.value);
}
//printk("[CAM] OV965X init reg end.\n");
}
实现是通过调用s3c_fimc_i2c_wirte实现的。在3Z核中,我需要加入哪个头文件能完成fimc的调用?
谢谢!