diff options
author | Ian Moffett <ian@osmora.org> | 2024-05-31 11:45:12 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-05-31 11:45:12 -0400 |
commit | d7dc8e3777b6846ae55575b6453e7202570a2acc (patch) | |
tree | ba4e12fbed25acbf5fbdfbed4eafbe9ad5eb5363 /sys/dev/ic | |
parent | 280f43aa8400cbb1ed61ca29e17f487310a4a5cc (diff) |
kernel: ahci: Fix null check
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/ahci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ic/ahci.c b/sys/dev/ic/ahci.c index 14dbf74..e7b2b7e 100644 --- a/sys/dev/ic/ahci.c +++ b/sys/dev/ic/ahci.c @@ -314,7 +314,7 @@ ahci_identify(struct ahci_hba *hba, struct hba_port *port) buf_phys = vm_alloc_pageframe(1); buf = PHYS_TO_VIRT(buf_phys); - if (buf == 0) { + if (buf_phys == 0) { status = -ENOMEM; goto done; } |