summaryrefslogtreecommitdiff
path: root/drivers/mtd/spi/spi-nor-tiny.c
diff options
context:
space:
mode:
authorJagan Teki <jagan@amarulasolutions.com>2020-05-13 15:46:39 +0300
committerJagan Teki <jagan@amarulasolutions.com>2020-06-01 15:25:24 +0300
commitf12f96cfaf53d47aa58eb640744542446aac44dd (patch)
treee070bd9a91c4b50f9a509ead487315c6cfbf9616 /drivers/mtd/spi/spi-nor-tiny.c
parent3ee152b965a13c43f9251d40e4c49486c71e5dac (diff)
downloadu-boot-f12f96cfaf53d47aa58eb640744542446aac44dd.tar.xz
sf: Drop spl_flash_get_sw_write_prot
The get_sw_write_prot API is used to get the write-protected bits of flash by reading the status register and other wards it's API for reading register bits. 1) This kind of requirement can be achieved using existing flash operations and flash locking API calls instead of making a separate flash API. 2) Technically there is no real hardware user for this API to use in the source tree. 3) Having a flash operations API for simple register read bits also make difficult to extend the flash operations. 4) Instead of touching generic code, it is possible to have this functionality inside spinor operations in the form of flash hooks or fixups for associated flash chips. Considering all these points, this patch drops the get_sw_write_prot and associated code bases. Cc: Simon Glass <sjg@chromium.org> Cc: Vignesh R <vigneshr@ti.com> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Diffstat (limited to 'drivers/mtd/spi/spi-nor-tiny.c')
-rw-r--r--drivers/mtd/spi/spi-nor-tiny.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/mtd/spi/spi-nor-tiny.c b/drivers/mtd/spi/spi-nor-tiny.c
index 55f86d5155..9f676c649d 100644
--- a/drivers/mtd/spi/spi-nor-tiny.c
+++ b/drivers/mtd/spi/spi-nor-tiny.c
@@ -798,9 +798,3 @@ int spi_nor_scan(struct spi_nor *nor)
return 0;
}
-
-/* U-Boot specific functions, need to extend MTD to support these */
-int spi_flash_cmd_get_sw_write_prot(struct spi_nor *nor)
-{
- return -ENOTSUPP;
-}