diff options
author | Alexey Klimov <klimov.linux@gmail.com> | 2015-06-30 21:04:07 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-07-07 13:12:50 +0100 |
commit | 99622f56110ee8cbfe8ecf2dd5e666f67cf4bb97 (patch) | |
tree | ba00ff9a8609da1218dd7127bab4a03f30cfd409 /drivers/spi | |
parent | d770e558e21961ad6cfdf0ff7df0eb5d7d4f0754 (diff) | |
download | linux-99622f56110ee8cbfe8ecf2dd5e666f67cf4bb97.tar.gz |
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: Alexey Klimov <klimov.linux@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/spi-rockchip.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/spi/spi-rockchip.c b/drivers/spi/spi-rockchip.c index 68e7efeb9a27..79a8bc4f6cec 100644 --- a/drivers/spi/spi-rockchip.c +++ b/drivers/spi/spi-rockchip.c @@ -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); |