diff options
author | Andrea Monaco <andrea.monaco@autistici.org> | 2021-09-12 21:07:24 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-09-12 21:07:24 +0200 |
commit | 2c2cadb29393691506510f755ef1d462eb811b22 (patch) | |
tree | 231c66e4b58fce94c714531696a29f3c1e013238 /linux | |
parent | 59296b8ed17147ff57c196a079a93e2a6f36c98f (diff) | |
download | gnumach-2c2cadb29393691506510f755ef1d462eb811b22.tar.gz gnumach-2c2cadb29393691506510f755ef1d462eb811b22.tar.bz2 gnumach-2c2cadb29393691506510f755ef1d462eb811b22.zip |
ahci: Fix warning content
* linux/dev/drivers/block/ahci.c (ahci_identify): Fix warning for the
identify timeout.
Diffstat (limited to 'linux')
-rw-r--r-- | linux/dev/drivers/block/ahci.c | 2 |
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); |