linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 1/2] spi: propagate error code to the caller of acpi_spi_device_alloc()
@ 2022-07-09  0:07 Andy Shevchenko
  2022-07-09  0:07 ` [PATCH v1 2/2] spi: remove duplicate parameters check in acpi_spi_add_resource() Andy Shevchenko
  2022-07-11 12:46 ` [PATCH v1 1/2] spi: propagate error code to the caller of acpi_spi_device_alloc() Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Andy Shevchenko @ 2022-07-09  0:07 UTC (permalink / raw)
  To: Mark Brown, linux-spi, linux-kernel; +Cc: Andy Shevchenko

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 <andriy.shevchenko@linux.intel.com>
---
 drivers/spi/spi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index 0690f018c413..d4a8665410ea 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -2565,7 +2565,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)) &&
-- 
2.35.1


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

end of thread, other threads:[~2022-07-11 12:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-09  0:07 [PATCH v1 1/2] spi: propagate error code to the caller of acpi_spi_device_alloc() Andy Shevchenko
2022-07-09  0:07 ` [PATCH v1 2/2] spi: remove duplicate parameters check in acpi_spi_add_resource() Andy Shevchenko
2022-07-11 12:46 ` [PATCH v1 1/2] spi: propagate error code to the caller of acpi_spi_device_alloc() Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).