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:
parent
55805e13a4
commit
90ad920d44
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue