Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1// SPDX-License-Identifier: GPL-2.0+
2#ifndef __LINUX_GPIO_PROPERTY_H
3#define __LINUX_GPIO_PROPERTY_H
4
5#include <linux/property.h>
6
7struct software_node;
8
9#define PROPERTY_ENTRY_GPIO(_name_, _chip_node_, _idx_, _flags_) \
10 PROPERTY_ENTRY_REF(_name_, _chip_node_, _idx_, _flags_)
11
12extern const struct software_node swnode_gpio_undefined;
13
14#endif /* __LINUX_GPIO_PROPERTY_H */