summaryrefslogtreecommitdiffstats
path: root/u-boot/board/goldelico/gta04/commands.c
diff options
context:
space:
mode:
authorH. Nikolaus Schaller <hns@goldelico.com>2012-10-13 08:22:02 +0200
committerH. Nikolaus Schaller <hns@goldelico.com>2012-10-13 08:22:02 +0200
commita1e3e7a2f7e812cec0627afedf1bc6c85aea4999 (patch)
treea45e837c8443ab2182ebf592c8c08516e0df848b /u-boot/board/goldelico/gta04/commands.c
parent7e4b84a1e9da223acab3bd833530d25763f19b80 (diff)
downloadbootable_bootloader_goldelico_gta04-a1e3e7a2f7e812cec0627afedf1bc6c85aea4999.zip
bootable_bootloader_goldelico_gta04-a1e3e7a2f7e812cec0627afedf1bc6c85aea4999.tar.gz
bootable_bootloader_goldelico_gta04-a1e3e7a2f7e812cec0627afedf1bc6c85aea4999.tar.bz2
added option to read PPS impulse; fixed GPIO assignments
Diffstat (limited to 'u-boot/board/goldelico/gta04/commands.c')
-rw-r--r--u-boot/board/goldelico/gta04/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/u-boot/board/goldelico/gta04/commands.c b/u-boot/board/goldelico/gta04/commands.c
index 107cb17..45520d2 100644
--- a/u-boot/board/goldelico/gta04/commands.c
+++ b/u-boot/board/goldelico/gta04/commands.c
@@ -333,7 +333,7 @@ static int do_status_init(int argc, char *const argv[])
static void print_buttons(int status)
{
- printf("AUX: %s Power: %s Antenna: %s Pen: %s", (status&0x01)?"on":"off", (status&0x08)?"on":"off", (status&0x02)?"EXT":"INT", (status&0x10)?"1":"0");
+ printf("AUX: %s Power: %s Antenna: %s Pen: %s Key: %s", (status&0x01)?"on":"off", (status&0x08)?"on":"off", (status&0x02)?"EXT":"INT", (status&0x10)?"1":"0", (status&0x20)?"1":"0");
}
static int do_status_check(int argc, char *const argv[])