diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2023-06-04 06:42:01 +0200 |
---|---|---|
committer | Miquel Raynal <miquel.raynal@bootlin.com> | 2023-06-09 17:27:14 +0200 |
commit | 6db02fdfdca0cf39b4d66950451d7f22b72a9031 (patch) | |
tree | 190c90696bc4dbb94214303dc5be005875c5b983 /drivers/mtd | |
parent | mtd: chips: Use SPDX license headers (diff) | |
download | linux-6db02fdfdca0cf39b4d66950451d7f22b72a9031.tar.xz linux-6db02fdfdca0cf39b4d66950451d7f22b72a9031.zip |
mtd: mtdpart: Drop useless LIST_HEAD
'tmp_list' is unused, so drop it.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/547248195d87d1240d6126d13eb1364b1a0b634d.1685853690.git.christophe.jaillet@wanadoo.fr
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/mtdpart.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mtd/mtdpart.c b/drivers/mtd/mtdpart.c index 85f5ee6f06fc..a46affbb037d 100644 --- a/drivers/mtd/mtdpart.c +++ b/drivers/mtd/mtdpart.c @@ -326,7 +326,6 @@ static int __mtd_del_partition(struct mtd_info *mtd) static int __del_mtd_partitions(struct mtd_info *mtd) { struct mtd_info *child, *next; - LIST_HEAD(tmp_list); int ret, err = 0; list_for_each_entry_safe(child, next, &mtd->partitions, part.node) { |