aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Shevchenko <[email protected]>2022-07-09 03:07:08 +0300
committerMark Brown <[email protected]>2022-07-11 12:06:40 +0100
commitb6747f4fba399a73a87fac80ac1d0c952a44b222 (patch)
tree35ffacfece08d5e8c35b92cf596b433968963fdc
parent9c22ec4ac27bcc5a54dd406da168f403327a5b55 (diff)
spi: propagate error code to the caller of acpi_spi_device_alloc()
Since acpi_spi_device_alloc() has been designed to return an error pointer we may now properly propagate error codes to the caller of it. It helps debugging a lot. Signed-off-by: Andy Shevchenko <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mark Brown <[email protected]>
-rw-r--r--drivers/spi/spi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index 2ec508ad8c2b..46c8f3ff89cb 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -2559,7 +2559,7 @@ struct spi_device *acpi_spi_device_alloc(struct spi_controller *ctlr,
if (ret < 0)
/* Found SPI in _CRS but it points to another controller */
- return ERR_PTR(-ENODEV);
+ return ERR_PTR(ret);
if (!lookup.max_speed_hz &&
ACPI_SUCCESS(acpi_get_parent(adev->handle, &parent_handle)) &&