diff options
author | H. Nikolaus Schaller <hns@goldelico.com> | 2011-05-02 13:37:27 +0200 |
---|---|---|
committer | H. Nikolaus Schaller <hns@goldelico.com> | 2011-05-02 13:37:27 +0200 |
commit | d5cd8d1d49fa30825270710abc6c214a2a0ba58a (patch) | |
tree | a40f2a4863d85558f7dcb385b362e86c8023ddc7 | |
parent | b69c203b903d3ec8af2350ecf55e00af8e784b8a (diff) | |
download | bootable_bootloader_goldelico_gta04-d5cd8d1d49fa30825270710abc6c214a2a0ba58a.zip bootable_bootloader_goldelico_gta04-d5cd8d1d49fa30825270710abc6c214a2a0ba58a.tar.gz bootable_bootloader_goldelico_gta04-d5cd8d1d49fa30825270710abc6c214a2a0ba58a.tar.bz2 |
fixed polarity of STBYB line
-rw-r--r-- | board/goldelico/beagle-expander/COM37H3M05DTC.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/goldelico/beagle-expander/COM37H3M05DTC.c b/board/goldelico/beagle-expander/COM37H3M05DTC.c index 4904c0f..526fcb1 100644 --- a/board/goldelico/beagle-expander/COM37H3M05DTC.c +++ b/board/goldelico/beagle-expander/COM37H3M05DTC.c @@ -103,7 +103,7 @@ int jbt6k74_enter_state(enum jbt_state new_state) int jbt6k74_display_onoff(int on) { - omap_set_gpio_dataout(GPIO_STBY, on?0:1); // on = no STBY + omap_set_gpio_dataout(GPIO_STBY, on?1:0); // on = no STBY return 0; } |