From 1825a7db869fdbbd6661bb077804701d013621eb Mon Sep 17 00:00:00 2001 From: "Suzuki K. Poulose" Date: Tue, 27 Sep 2016 14:44:25 +0100 Subject: [PATCH] coresight: tmc: Remove duplicate memset The tmc_etr_enable_hw() fills the buffer with 0's before enabling the hardware. So, we don't need an explicit memset() in tmc_enable_etr_sink_sysfs() before calling the tmc_etr_enable_hw(). This patch removes the explicit memset from tmc_enable_etr_sink_sysfs. Signed-off-by: Suzuki K Poulose Signed-off-by: Mathieu Poirier (cherry picked from commit 80445970ae1c928e503aefc66033e825b9668884) --- drivers/hwtracing/coresight/coresight-tmc-etr.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/hwtracing/coresight/coresight-tmc-etr.c b/drivers/hwtracing/coresight/coresight-tmc-etr.c index 3b84d0d38c22..5d312699b3b9 100644 --- a/drivers/hwtracing/coresight/coresight-tmc-etr.c +++ b/drivers/hwtracing/coresight/coresight-tmc-etr.c @@ -150,8 +150,6 @@ static int tmc_enable_etr_sink_sysfs(struct coresight_device *csdev) drvdata->buf = drvdata->vaddr; } - memset(drvdata->vaddr, 0, drvdata->size); - drvdata->mode = CS_MODE_SYSFS; tmc_etr_enable_hw(drvdata); out: