mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
dm: gpio: Fix comment typo in GPIOD_IS_IN
This should say 'in', not 'out'. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
f0e57b1bf9
commit
f9523961b0
1 changed files with 1 additions and 1 deletions
|
@ -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 output */
|
||||
#define GPIOD_IS_IN (1 << 2) /* GPIO is an input */
|
||||
#define GPIOD_ACTIVE_LOW (1 << 3) /* value has active low */
|
||||
#define GPIOD_IS_OUT_ACTIVE (1 << 4) /* set output active */
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue