mtd: chips: gen_probe: kill useless initializer in mtd_do_chip_probe()
authorSergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Wed, 3 Jul 2019 20:26:27 +0000 (23:26 +0300)
committerVignesh Raghavendra <vigneshr@ti.com>
Tue, 27 Aug 2019 11:38:18 +0000 (17:08 +0530)
The 'mtd' local variable is initialized but this value is never used,
thus kill that initializer.

Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
drivers/mtd/chips/gen_probe.c

index 839ed40..e5bd3c2 100644 (file)
@@ -20,7 +20,7 @@ static int genprobe_new_chip(struct map_info *map, struct chip_probe *cp,
 
 struct mtd_info *mtd_do_chip_probe(struct map_info *map, struct chip_probe *cp)
 {
-       struct mtd_info *mtd = NULL;
+       struct mtd_info *mtd;
        struct cfi_private *cfi;
 
        /* First probe the map to see if we have CFI stuff there. */