From: Tejun Heo Date: Tue, 14 Apr 2009 03:59:03 +0000 (+0900) Subject: pata_legacy: fix no device fail path X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=20cbf5f8c0fe3df2ddbde1f334993b4dda18a651;p=linux-beck.git pata_legacy: fix no device fail path When pata_legacy can't detect any device, it unregisters the platform_device and fails detection. However, it forgets to detach ata host triggering weird failures as the host later gets freed by devres while still attached. Fix it. Signed-off-by: Tejun Heo Reported-by: Peter Zijlstra Signed-off-by: Jeff Garzik --- diff --git a/drivers/ata/pata_legacy.c b/drivers/ata/pata_legacy.c index 3f830f0fe2cc..0c6dde80417b 100644 --- a/drivers/ata/pata_legacy.c +++ b/drivers/ata/pata_legacy.c @@ -1032,6 +1032,7 @@ static __init int legacy_init_one(struct legacy_probe *probe) return 0; } } + ata_host_detach(host); fail: platform_device_unregister(pdev); return ret;