kexts: ahci: remove generic log messages

This commit is contained in:
2023-07-19 18:59:42 +01:00
parent b4ef018c5f
commit 42c6cfb697

View File

@@ -107,14 +107,12 @@ kern_status_t send_ata_command_ex(struct ahci_device *dev, struct fis_reg_h2d *f
if (port->is & HBA_PxIS_TFES) {
free_cmd_table(cmdtbl);
printk("ahci: command failed");
return KERN_IO_ERROR;
}
}
free_cmd_table(cmdtbl);
if (port->is & HBA_PxIS_TFES) {
printk("ahci: command failed");
return KERN_IO_ERROR;
}