mtd: spi-nor: drop superfluous debug prints
authorTudor Ambarus <tudor.ambarus@linaro.org>
Fri, 15 Dec 2023 08:21:38 +0000 (10:21 +0200)
committerTudor Ambarus <tudor.ambarus@linaro.org>
Tue, 19 Dec 2023 03:09:09 +0000 (05:09 +0200)
The mtd data shall be obtained with the mtd ioctls or with
new debugfs entries if one cares. Drop the debug prints.

Reviewed-by: Michael Walle <michael@walle.cc>
Link: https://lore.kernel.org/r/20231215082138.16063-5-tudor.ambarus@linaro.org
Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
drivers/mtd/spi-nor/core.c

index ca5bd93d1f17100e5c563c009576015227fae097..92c992eb73d5ec866ef29f34f762a5919bb1e97c 100644 (file)
@@ -3492,9 +3492,7 @@ int spi_nor_scan(struct spi_nor *nor, const char *name,
 {
        const struct flash_info *info;
        struct device *dev = nor->dev;
-       struct mtd_info *mtd = &nor->mtd;
        int ret;
-       int i;
 
        ret = spi_nor_check(nor);
        if (ret)
@@ -3561,22 +3559,6 @@ int spi_nor_scan(struct spi_nor *nor, const char *name,
        dev_dbg(dev, "Manufacturer and device ID: %*phN\n",
                SPI_NOR_MAX_ID_LEN, nor->id);
 
-       dev_dbg(dev,
-               "mtd .name = %s, .size = 0x%llx (%lldMiB), "
-               ".erasesize = 0x%.8x (%uKiB) .numeraseregions = %d\n",
-               mtd->name, (long long)mtd->size, (long long)(mtd->size >> 20),
-               mtd->erasesize, mtd->erasesize / 1024, mtd->numeraseregions);
-
-       if (mtd->numeraseregions)
-               for (i = 0; i < mtd->numeraseregions; i++)
-                       dev_dbg(dev,
-                               "mtd.eraseregions[%d] = { .offset = 0x%llx, "
-                               ".erasesize = 0x%.8x (%uKiB), "
-                               ".numblocks = %d }\n",
-                               i, (long long)mtd->eraseregions[i].offset,
-                               mtd->eraseregions[i].erasesize,
-                               mtd->eraseregions[i].erasesize / 1024,
-                               mtd->eraseregions[i].numblocks);
        return 0;
 }
 EXPORT_SYMBOL_GPL(spi_nor_scan);