diff options
author | Liao Yuanhong <liaoyuanhong@vivo.com> | 2025-08-07 20:39:49 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2025-08-11 14:08:52 +0100 |
commit | f6cc4140e161831e5796f099f5abc3af953ae2b8 (patch) | |
tree | ab28d685c42546279b631d19c7ed8cd255815039 | |
parent | c6871d56b52ec177b8b8bd891fa0cbbd004b646d (diff) |
regulator: tps6524x: Remove unnecessary memset
devm_kzalloc() has already been initialized to full 0 space, there is no
need to use memset() to initialize again.
Signed-off-by: Liao Yuanhong <liaoyuanhong@vivo.com>
Link: https://patch.msgid.link/20250807123949.495193-1-liaoyuanhong@vivo.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/regulator/tps6524x-regulator.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/regulator/tps6524x-regulator.c b/drivers/regulator/tps6524x-regulator.c index 3fee7e38c68b..6beb51293e8e 100644 --- a/drivers/regulator/tps6524x-regulator.c +++ b/drivers/regulator/tps6524x-regulator.c @@ -598,7 +598,6 @@ static int pmic_probe(struct spi_device *spi) spi_set_drvdata(spi, hw); - memset(hw, 0, sizeof(struct tps6524x)); hw->dev = dev; hw->spi = spi; mutex_init(&hw->lock); |