summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Monaco <andrea.monaco@autistici.org>2021-09-12 21:07:24 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2021-09-12 21:07:24 +0200
commit2c2cadb29393691506510f755ef1d462eb811b22 (patch)
tree231c66e4b58fce94c714531696a29f3c1e013238
parent59296b8ed17147ff57c196a079a93e2a6f36c98f (diff)
ahci: Fix warning content
* linux/dev/drivers/block/ahci.c (ahci_identify): Fix warning for the identify timeout.
-rw-r--r--linux/dev/drivers/block/ahci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/dev/drivers/block/ahci.c b/linux/dev/drivers/block/ahci.c
index b8fd9dae..866618f1 100644
--- a/linux/dev/drivers/block/ahci.c
+++ b/linux/dev/drivers/block/ahci.c
@@ -645,7 +645,7 @@ static int ahci_identify(const volatile struct ahci_host *ahci_host, const volat
add_timer(&identify_timer);
while (!port->status) {
if (jiffies >= timeout) {
- printk("sd%u: timeout waiting for ready\n", port-ports);
+ printk("sd%u: timeout waiting for identify\n", port-ports);
port->ahci_host = NULL;
port->ahci_port = NULL;
del_timer(&identify_timer);