Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 99622f56 authored by Alexey Klimov's avatar Alexey Klimov Committed by Mark Brown
Browse files

spi/rockchip: remove unnecessary memset of rockchip_spi



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

Signed-off-by: default avatarAlexey Klimov <klimov.linux@gmail.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent d770e558
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -645,7 +645,6 @@ static int rockchip_spi_probe(struct platform_device *pdev)
	platform_set_drvdata(pdev, master);

	rs = spi_master_get_devdata(master);
	memset(rs, 0, sizeof(struct rockchip_spi));

	/* Get basic io resource and map it */
	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);