| Submitter | Lars Poeschel |
|---|---|
| Date | Jan. 8, 2013, 4:52 p.m. |
| Message ID | <1357663926-15937-1-git-send-email-larsi@wh2.tu-dresden.de> |
| Download | mbox | patch |
| Permalink | /patch/210446/ |
| State | Superseded |
| Delegated to: | Tom Rini |
| Headers | show |
Comments
Patch
diff --git a/arch/arm/include/asm/arch-am33xx/mux.h b/arch/arm/include/asm/arch-am33xx/mux.h index aed6b00..460ac1c 100644 --- a/arch/arm/include/asm/arch-am33xx/mux.h +++ b/arch/arm/include/asm/arch-am33xx/mux.h @@ -25,7 +25,8 @@ /* PAD Control Fields */ #define SLEWCTRL (0x1 << 6) #define RXACTIVE (0x1 << 5) -#define PULLUP_EN (0x1 << 4) /* Pull UP Selection */ +#define PULLDOWN_EN (0x0 << 4) /* Pull Down Selection */ +#define PULLUP_EN (0x1 << 4) /* Pull Up Selection */ #define PULLUDEN (0x0 << 3) /* Pull up enabled */ #define PULLUDDIS (0x1 << 3) /* Pull up disabled */ #define MODE(val) val /* used for Readability */