From 2c2cadb29393691506510f755ef1d462eb811b22 Mon Sep 17 00:00:00 2001 From: Andrea Monaco Date: Sun, 12 Sep 2021 21:07:24 +0200 Subject: ahci: Fix warning content * linux/dev/drivers/block/ahci.c (ahci_identify): Fix warning for the identify timeout. --- linux/dev/drivers/block/ahci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'linux/dev') 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); -- cgit v1.2.3