1262569Simp/*
2262569Simp * This header provides constants for most GPIO bindings.
3262569Simp *
4262569Simp * Most GPIO bindings include a flags cell as part of the GPIO specifier.
5262569Simp * In most cases, the format of the flags cell uses the standard values
6262569Simp * defined in this header.
7262569Simp */
8262569Simp
9262569Simp#ifndef _DT_BINDINGS_GPIO_GPIO_H
10262569Simp#define _DT_BINDINGS_GPIO_GPIO_H
11262569Simp
12262569Simp#define GPIO_ACTIVE_HIGH 0
13262569Simp#define GPIO_ACTIVE_LOW 1
14262569Simp
15262569Simp#endif
16