public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] ACPI / LPSS: set an error code
@ 2015-07-03  8:56 Dan Carpenter
  2015-07-06 22:56 ` Rafael J. Wysocki
  0 siblings, 1 reply; 3+ messages in thread
From: Dan Carpenter @ 2015-07-03  8:56 UTC (permalink / raw)
  To: Rafael J. Wysocki, Heikki Krogerus; +Cc: Len Brown, linux-acpi, kernel-janitors

We should return -ENOMEM if ioremap() fails.

Fixes: 4483d59e29fe ('ACPI / LPSS: check the result of ioremap()')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

diff --git a/drivers/acpi/acpi_lpss.c b/drivers/acpi/acpi_lpss.c
index 569ee09..10bf5c7 100644
--- a/drivers/acpi/acpi_lpss.c
+++ b/drivers/acpi/acpi_lpss.c
@@ -352,8 +352,10 @@ static int acpi_lpss_create_device(struct acpi_device *adev,
 				pdata->mmio_size = resource_size(rentry->res);
 			pdata->mmio_base = ioremap(rentry->res->start,
 						   pdata->mmio_size);
-			if (!pdata->mmio_base)
+			if (!pdata->mmio_base) {
+				ret = -ENOMEM;
 				goto err_out;
+			}
 			break;
 		}
 

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-07-07  7:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-03  8:56 [patch] ACPI / LPSS: set an error code Dan Carpenter
2015-07-06 22:56 ` Rafael J. Wysocki
2015-07-07  7:50   ` Dan Carpenter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox