/* SPDX-License-Identifier: GPL-2.0+ */ /* * OF helpers for the GPIO API * * Copyright (c) 2007-2008 MontaVista Software, Inc. * * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
*/
#include <linux/compiler.h> #include <linux/gpio/driver.h> #include <linux/gpio.h> /* FIXME: Shouldn't be here */ #include <linux/of.h>
struct device_node;
#ifdef CONFIG_OF_GPIO
externint of_get_named_gpio(conststruct device_node *np, constchar *list_name, int index);
#else/* CONFIG_OF_GPIO */
#include <linux/errno.h>
/* Drivers may not strictly depend on the GPIO support, so let them link. */ staticinlineint of_get_named_gpio(conststruct device_node *np, constchar *propname, int index)
{ return -ENOSYS;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.