mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-26 07:20:32 +00:00
Change AHCIPortIdentify port cmd_issue set to debug approach with or-equals.
This commit is contained in:
parent
7c6f6117d2
commit
0d517f15bb
1 changed files with 3 additions and 1 deletions
|
@ -633,7 +633,9 @@ U0 AHCIPortIdentify(CBlkDev *bd)
|
|||
//Wait on previous command to complete.
|
||||
AHCIPortWait(bd->port_num, tS + 2);
|
||||
|
||||
Bts(&port->cmd_issue, cmd_slot); //Issue the command.
|
||||
// Bts(&port->cmd_issue, cmd_slot); //Issue the command.
|
||||
port->cmd_issue |= 1 << cmd_slot; //issue the command with |= for debug sake
|
||||
|
||||
if (sys_boot_src.u16[0] == BOOT_SRC_DVD)
|
||||
{
|
||||
"AHCI: DEBUG: AHCIPortIdentify variable check 2\n";
|
||||
|
|
Loading…
Reference in a new issue