From 90ad920d44521ff229a9397957ce49101084d57a Mon Sep 17 00:00:00 2001 From: James Buren Date: Mon, 22 Mar 2021 06:55:18 -0500 Subject: 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 --- apps/debug_menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') 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) #endif /* HAVE_ATA_DMA */ i = identify_info[0] & (1 << 15); simplelist_addline( - "ATA device: %s", i ? "yes" : "no"); + "CF compatible: %s", i ? "yes" : "no"); i = identify_info[0] & (1 << 6); simplelist_addline( "Fixed device: %s", i ? "yes" : "no"); -- cgit v1.2.3