You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
315 B
12 lines
315 B
#ifndef __SYSDEV_SIMPLE_GPIO_H
|
|
#define __SYSDEV_SIMPLE_GPIO_H
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#ifdef CONFIG_SIMPLE_GPIO
|
|
extern void simple_gpiochip_init(const char *compatible);
|
|
#else
|
|
static inline void simple_gpiochip_init(const char *compatible) {}
|
|
#endif /* CONFIG_SIMPLE_GPIO */
|
|
|
|
#endif /* __SYSDEV_SIMPLE_GPIO_H */
|
|
|