在/arch/arm/mach-s5pv210/mach-mini210.c的摄像头控制新增了对GPJ2_4的控制可是实际电路图找
不到相关的引脚连接!请版主说明!
static int ov9650_power_en(int onoff)
{
#define CAMA_PWR_EN S5PV210_GPJ2(4)
gpio_request(CAMA_PWR_EN, "GPJ2_4");
gpio_direction_output(CAMA_PWR_EN, onoff);
gpio_free(CAMA_PWR_EN);
printk("ov9650: power %s\n", onoff ? "ON" : "Off");
return 0;
}