diff options
author | Eugen Hristev <eugen.hristev@microchip.com> | 2018-04-24 14:36:28 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-05-08 09:07:36 -0400 |
commit | 528a42a795c3069409305a2eb7a7d291681aec4d (patch) | |
tree | 251acfd316a6e9be0f3236c71f81bbd09466468e /board/atmel/sama5d27_som1_ek/sama5d27_som1_ek.c | |
parent | 72281cbcf8553f46c0ca989c50f14227d75f5045 (diff) |
board: sama5d27_som1_ek: Fix the USB vbus power
According to the REVB schematic, fix the USB vbus power enable pin.
Based on original work by Wenyou Yang
Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
Diffstat (limited to 'board/atmel/sama5d27_som1_ek/sama5d27_som1_ek.c')
-rw-r--r-- | board/atmel/sama5d27_som1_ek/sama5d27_som1_ek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/atmel/sama5d27_som1_ek/sama5d27_som1_ek.c b/board/atmel/sama5d27_som1_ek/sama5d27_som1_ek.c index 3c97315015..d5ddf8d2eb 100644 --- a/board/atmel/sama5d27_som1_ek/sama5d27_som1_ek.c +++ b/board/atmel/sama5d27_som1_ek/sama5d27_som1_ek.c @@ -19,7 +19,7 @@ DECLARE_GLOBAL_DATA_PTR; static void board_usb_hw_init(void) { - atmel_pio4_set_pio_output(AT91_PIO_PORTB, 10, 1); + atmel_pio4_set_pio_output(AT91_PIO_PORTA, 27, 1); } #ifdef CONFIG_BOARD_LATE_INIT |