]> git.itanic.dy.fi Git - linux-stable/commitdiff
mtd: spi-nor: remove catalyst 'flashes'
authorMichael Walle <mwalle@kernel.org>
Fri, 8 Sep 2023 10:16:19 +0000 (12:16 +0200)
committerTudor Ambarus <tudor.ambarus@linaro.org>
Tue, 19 Sep 2023 15:49:09 +0000 (18:49 +0300)
CAT25xx are actually EEPROMs manufactured by Catalyst. The devices are
ancient (DS are from 1998), there are not in-tree users, nor are there
any device tree bindings. Remove it. The correct driver is the at25.

Signed-off-by: Michael Walle <mwalle@kernel.org>
Link: https://lore.kernel.org/r/20230807-mtd-flash-info-db-rework-v3-1-e60548861b10@kernel.org
Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
drivers/mtd/spi-nor/Makefile
drivers/mtd/spi-nor/catalyst.c [deleted file]
drivers/mtd/spi-nor/core.c
drivers/mtd/spi-nor/core.h

index e347b435a038ec5301ab6fdc47b0764ac1f409d1..496dae9ca0f3db38beb93631a089b07f3e1de74c 100644 (file)
@@ -2,7 +2,6 @@
 
 spi-nor-objs                   := core.o sfdp.o swp.o otp.o sysfs.o
 spi-nor-objs                   += atmel.o
-spi-nor-objs                   += catalyst.o
 spi-nor-objs                   += eon.o
 spi-nor-objs                   += esmt.o
 spi-nor-objs                   += everspin.o
diff --git a/drivers/mtd/spi-nor/catalyst.c b/drivers/mtd/spi-nor/catalyst.c
deleted file mode 100644 (file)
index 6d31081..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-/*
- * Copyright (C) 2005, Intec Automation Inc.
- * Copyright (C) 2014, Freescale Semiconductor, Inc.
- */
-
-#include <linux/mtd/spi-nor.h>
-
-#include "core.h"
-
-static const struct flash_info catalyst_nor_parts[] = {
-       /* Catalyst / On Semiconductor -- non-JEDEC */
-       { "cat25c11", CAT25_INFO(16, 8, 16, 1) },
-       { "cat25c03", CAT25_INFO(32, 8, 16, 2) },
-       { "cat25c09", CAT25_INFO(128, 8, 32, 2) },
-       { "cat25c17", CAT25_INFO(256, 8, 32, 2) },
-       { "cat25128", CAT25_INFO(2048, 8, 64, 2) },
-};
-
-const struct spi_nor_manufacturer spi_nor_catalyst = {
-       .name = "catalyst",
-       .parts = catalyst_nor_parts,
-       .nparts = ARRAY_SIZE(catalyst_nor_parts),
-};
index 1b0c6770c14e46419d9362bc7111128873e71780..c44de69c4353491d41ee4bd88f10a39e6eeff772 100644 (file)
@@ -1999,7 +1999,6 @@ int spi_nor_sr2_bit7_quad_enable(struct spi_nor *nor)
 
 static const struct spi_nor_manufacturer *manufacturers[] = {
        &spi_nor_atmel,
-       &spi_nor_catalyst,
        &spi_nor_eon,
        &spi_nor_esmt,
        &spi_nor_everspin,
index 9217379b9cfefd2c8b8e4637c85a262b87238f0f..6d31af6c39eda438dceb772643bf2e7095e102b8 100644 (file)
@@ -631,7 +631,6 @@ struct sfdp {
 
 /* Manufacturer drivers. */
 extern const struct spi_nor_manufacturer spi_nor_atmel;
-extern const struct spi_nor_manufacturer spi_nor_catalyst;
 extern const struct spi_nor_manufacturer spi_nor_eon;
 extern const struct spi_nor_manufacturer spi_nor_esmt;
 extern const struct spi_nor_manufacturer spi_nor_everspin;