Beispiel #1
0
Datei: gpio.c Projekt: E-LLP/n900
static int mxc_gpio_direction_output(struct gpio_chip *chip,
				     unsigned offset, int value)
{
	_set_gpio_direction(chip, offset, 1);
	mxc_gpio_set(chip, offset, value);
	return 0;
}
Beispiel #2
0
static void qong_fpga_jtag_set_tck(int value)
{
	mxc_gpio_set(QONG_FPGA_TCK_PIN, value);
}