Linux SPI subsystem development
 help / color / mirror / Atom feed
* [PATCH] spi: spi: Remove unnecessary ‘0’ values from rc
@ 2024-07-08  3:53 Li zeming
  2024-07-08 14:25 ` Mark Brown
  0 siblings, 1 reply; 2+ messages in thread
From: Li zeming @ 2024-07-08  3:53 UTC (permalink / raw)
  To: broonie; +Cc: linux-spi, linux-kernel, Li zeming

rc is assigned first, so it does not need to initialize the assignment.

Signed-off-by: Li zeming <zeming@nfschina.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 fc13fa192189..bb731ab697a8 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -2594,7 +2594,7 @@ struct spi_device *spi_new_ancillary_device(struct spi_device *spi,
 {
 	struct spi_controller *ctlr = spi->controller;
 	struct spi_device *ancillary;
-	int rc = 0;
+	int rc;
 
 	/* Alloc an spi_device */
 	ancillary = spi_alloc_device(ctlr);
-- 
2.18.2


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

end of thread, other threads:[~2024-07-08 14:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-08  3:53 [PATCH] spi: spi: Remove unnecessary ‘0’ values from rc Li zeming
2024-07-08 14:25 ` Mark Brown

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