summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJames Buren <braewoods+rb@braewoods.net>2021-03-22 06:55:18 -0500
committerSolomon Peachy <pizza@shaftnet.org>2021-03-22 13:22:00 +0000
commit90ad920d44521ff229a9397957ce49101084d57a (patch)
tree3f69a9b93775e16360fa5f05d61272628ebf5e0f /apps
parent55805e13a4ef0152b40e6606fce8b4603ae8cb91 (diff)
downloadrockbox-90ad920d44521ff229a9397957ce49101084d57a.tar.gz
rockbox-90ad920d44521ff229a9397957ce49101084d57a.zip
debug_menu: revise how the ATA device bit is reported
According to the ATA specification this bit is used to indicate either an ATA device or a CF compatible card. We use it currently to indicate CF compatible status. So let's change the wording accordingly. Change-Id: Iee87197dee80e6225e4c62c40bceedfbc4e659c2
Diffstat (limited to 'apps')
-rw-r--r--apps/debug_menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index edbc2c3300..9bbbfaec99 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1430,7 +1430,7 @@ static int disk_callback(int btn, struct gui_synclist *lists)
1430#endif /* HAVE_ATA_DMA */ 1430#endif /* HAVE_ATA_DMA */
1431 i = identify_info[0] & (1 << 15); 1431 i = identify_info[0] & (1 << 15);
1432 simplelist_addline( 1432 simplelist_addline(
1433 "ATA device: %s", i ? "yes" : "no"); 1433 "CF compatible: %s", i ? "yes" : "no");
1434 i = identify_info[0] & (1 << 6); 1434 i = identify_info[0] & (1 << 6);
1435 simplelist_addline( 1435 simplelist_addline(
1436 "Fixed device: %s", i ? "yes" : "no"); 1436 "Fixed device: %s", i ? "yes" : "no");