linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] spi/s3c24xx: remove unnecessary memset of s3c24xx_spi
@ 2015-06-30 18:03 Alexey Klimov
  2015-07-01  4:25 ` Daniel Kurtz
  2015-07-07 13:58 ` Applied "spi/s3c24xx: remove unnecessary memset of s3c24xx_spi" to the spi tree Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Alexey Klimov @ 2015-06-30 18:03 UTC (permalink / raw)
  To: linux-spi, broonie
  Cc: linux-samsung-soc, klimov.linux, addy.ke, linux-rockchip

Memory for this struct is allocated by spi_alloc_master() using
kzalloc() so it doesn't need to be set to 0 one more time.

Signed-off-by: Alexey Klimov <klimov.linux@gmail.com>
---
 drivers/spi/spi-s3c24xx.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/spi/spi-s3c24xx.c b/drivers/spi/spi-s3c24xx.c
index f747ca2..f36bc32 100644
--- a/drivers/spi/spi-s3c24xx.c
+++ b/drivers/spi/spi-s3c24xx.c
@@ -501,7 +501,6 @@ static int s3c24xx_spi_probe(struct platform_device *pdev)
 	}
 
 	hw = spi_master_get_devdata(master);
-	memset(hw, 0, sizeof(struct s3c24xx_spi));
 
 	hw->master = master;
 	hw->pdata = pdata = dev_get_platdata(&pdev->dev);
-- 
1.9.1

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

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

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-30 18:03 [PATCH 1/2] spi/s3c24xx: remove unnecessary memset of s3c24xx_spi Alexey Klimov
2015-07-01  4:25 ` Daniel Kurtz
2015-07-07 13:58 ` Applied "spi/s3c24xx: remove unnecessary memset of s3c24xx_spi" to the spi tree 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).