From: Alexey Khoroshilov Date: Fri, 11 Dec 2015 20:24:10 +0000 (+0300) Subject: nfit: acpi_nfit_notify(): Do not leave device locked X-Git-Tag: v4.4~78^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d91e892825ae6f0ed4f8b07ae5d348eff86ab2ea;p=platform%2Fkernel%2Flinux-amlogic.git nfit: acpi_nfit_notify(): Do not leave device locked Even if dev->driver is null because we are being removed, it is safer to not leave device locked. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Alexey Khoroshilov Reviewed-by: Ross Zwisler Reviewed-by: Vishal Verma Signed-off-by: Dan Williams --- diff --git a/drivers/acpi/nfit.c b/drivers/acpi/nfit.c index e7ed39b..aa45d48 100644 --- a/drivers/acpi/nfit.c +++ b/drivers/acpi/nfit.c @@ -1810,7 +1810,7 @@ static void acpi_nfit_notify(struct acpi_device *adev, u32 event) if (!dev->driver) { /* dev->driver may be null if we're being removed */ dev_dbg(dev, "%s: no driver found for dev\n", __func__); - return; + goto out_unlock; } if (!acpi_desc) {