projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f0e57b1
)
dm: gpio: Fix comment typo in GPIOD_IS_IN
author
Simon Glass
<sjg@chromium.org>
Mon, 4 May 2015 17:31:01 +0000
(11:31 -0600)
committer
Simon Glass
<sjg@chromium.org>
Fri, 15 May 2015 00:49:34 +0000
(18:49 -0600)
This should say 'in', not 'out'.
Signed-off-by: Simon Glass <sjg@chromium.org>
include/asm-generic/gpio.h
patch
|
blob
|
history
diff --git
a/include/asm-generic/gpio.h
b/include/asm-generic/gpio.h
index
4752ea4
..
519bb0b
100644
(file)
--- a/
include/asm-generic/gpio.h
+++ b/
include/asm-generic/gpio.h
@@
-115,7
+115,7
@@
struct gpio_desc {
unsigned long flags;
#define GPIOD_REQUESTED (1 << 0) /* Requested/claimed */
#define GPIOD_IS_OUT (1 << 1) /* GPIO is an output */
-#define GPIOD_IS_IN (1 << 2) /* GPIO is an
out
put */
+#define GPIOD_IS_IN (1 << 2) /* GPIO is an
in
put */
#define GPIOD_ACTIVE_LOW (1 << 3) /* value has active low */
#define GPIOD_IS_OUT_ACTIVE (1 << 4) /* set output active */