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
This commit is contained in:
James Buren 2021-03-22 06:55:18 -05:00 committed by Solomon Peachy
parent 55805e13a4
commit 90ad920d44

View file

@ -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");