從Linux/drivers/input/touchscreen/cy8ctmg110_ts.c的源碼中截取如下
static void cy8ctmg110_power(struct cy8ctmg110 *ts, bool poweron)
{
if (ts->reset_pin)
gpio_direction_output(ts->reset_pin, 1 - poweron);
}
我想請問,我該如何找出gpio_direction_output這指令對應在mini6410硬體上GPIO的位置??