Server IP : 15.235.198.142 / Your IP : 216.73.216.59 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/src/linux-headers-6.8.0-45/include/linux/ |
Upload File : |
/* 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> */ #ifndef __LINUX_OF_GPIO_H #define __LINUX_OF_GPIO_H #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 extern int of_get_named_gpio(const struct device_node *np, const char *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. */ static inline int of_get_named_gpio(const struct device_node *np, const char *propname, int index) { return -ENOSYS; } #endif /* CONFIG_OF_GPIO */ #endif /* __LINUX_OF_GPIO_H */