mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2025-01-13 16:16:31 +00:00
Fix kernel compile warn on debug var dup type.
This commit is contained in:
parent
52db1e115c
commit
896239cd77
1 changed files with 1 additions and 2 deletions
|
@ -222,8 +222,7 @@ U0 AHCIPortCmdWait(I64 port_num, I64 cmd_slot)
|
|||
CAHCIPort *port = &blkdev.ahci_hba->ports[port_num];
|
||||
U8 str[STR_LEN];
|
||||
|
||||
U64 debug_timeout = 0;
|
||||
U64 debug_retries = 16;
|
||||
U64 debug_timeout = 0, debug_retries = 16;
|
||||
if (sys_boot_src.u16[0] == BOOT_SRC_DVD)
|
||||
"DEBUG: AHCI: AHCIPortCmdWait";
|
||||
|
||||
|
|
Loading…
Reference in a new issue