diff options
-rw-r--r-- | src/sys/io/ic/ahci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sys/io/ic/ahci.c b/src/sys/io/ic/ahci.c index aecef80..05d59f6 100644 --- a/src/sys/io/ic/ahci.c +++ b/src/sys/io/ic/ahci.c @@ -346,7 +346,7 @@ ahci_init_ports(struct ahci_hba *hba) dtrace("port %d implemented\n", i); port = kalloc(sizeof(*port)); if (port == NULL) { - printf("failed to allocate port\n"); + dtrace("failed to allocate port\n"); continue; } @@ -358,7 +358,7 @@ ahci_init_ports(struct ahci_hba *hba) error = ahci_init_port(hba, port); if (error < 0) { ahci_port_detach(port); - printf("port init failed (error=%d)\n", error); + dtrace("port init failed (error=%d)\n", error); continue; } } |