-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 370447 b: refs/heads/master c: 71fab21 h: refs/heads/master i: 370445: ecb9c32 370443: 093f326 370439: 2b146fd 370431: 65f9c17 v: v3
- Loading branch information
Stephen Warren
committed
Apr 5, 2013
1 parent
865769a
commit 92e345b
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: b40b25fff8205dd18124d8fc87b2c9c57f269b5f | ||
refs/heads/master: 71fab21fee07fd6d5f1a984db387cc5e4596f3fa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
* This header provides constants for most GPIO bindings. | ||
* | ||
* Most GPIO bindings include a flags cell as part of the GPIO specifier. | ||
* In most cases, the format of the flags cell uses the standard values | ||
* defined in this header. | ||
*/ | ||
|
||
#ifndef _DT_BINDINGS_GPIO_GPIO_H | ||
#define _DT_BINDINGS_GPIO_GPIO_H | ||
|
||
#define GPIO_ACTIVE_HIGH 0 | ||
#define GPIO_ACTIVE_LOW 1 | ||
|
||
#endif |