forked from len0rd/rockbox
debug_menu: Fix compile error from previous commit
Change-Id: If01ba31a34be3e277a98adb93861aa2a19d8829d
This commit is contained in:
parent
3f88512b3b
commit
3a254a92c7
1 changed files with 3 additions and 3 deletions
|
|
@ -1428,13 +1428,13 @@ static int disk_callback(int btn, struct gui_synclist *lists)
|
|||
'0' + (i & 7));
|
||||
}
|
||||
#endif /* HAVE_ATA_DMA */
|
||||
i = identity_info[0] & (1 << 15);
|
||||
i = identify_info[0] & (1 << 15);
|
||||
simplelist_addline(
|
||||
"ATA device: %s", i ? "yes" : "no");
|
||||
i = identity_info[0] & (1 << 6);
|
||||
i = identify_info[0] & (1 << 6);
|
||||
simplelist_addline(
|
||||
"Fixed device: %s", i ? "yes" : "no");
|
||||
i = identity_info[0] & (1 << 7);
|
||||
i = identify_info[0] & (1 << 7);
|
||||
simplelist_addline(
|
||||
"Removeable media: %s", i ? "yes" : "no");
|
||||
return btn;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue