diff options
author | Tom Rini <trini@konsulko.com> | 2020-06-03 12:27:51 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-06-03 12:27:51 -0400 |
commit | 0d8f35b58cc8458a5263b424896a386429ee49e5 (patch) | |
tree | 5d2faff1993ca4daa006916e84521af31ddfecb6 /drivers/mtd/spi/sf-uclass.c | |
parent | f1a69b8c733614ca8293891d4f7a1d1bdbe665c9 (diff) | |
parent | db2e6d0ad7860653fcec63ded4211d74b83c2e09 (diff) |
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-spi
- Toshiba spinand (Yoshio)
- SPI/SPI Flash cleanup (Jagan)
- Remove SH SPI (Jagan)
Diffstat (limited to 'drivers/mtd/spi/sf-uclass.c')
-rw-r--r-- | drivers/mtd/spi/sf-uclass.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/mtd/spi/sf-uclass.c b/drivers/mtd/spi/sf-uclass.c index de369aa001d..9ce2ecb99ac 100644 --- a/drivers/mtd/spi/sf-uclass.c +++ b/drivers/mtd/spi/sf-uclass.c @@ -30,15 +30,6 @@ int spi_flash_erase_dm(struct udevice *dev, u32 offset, size_t len) return log_ret(sf_get_ops(dev)->erase(dev, offset, len)); } -int spl_flash_get_sw_write_prot(struct udevice *dev) -{ - struct dm_spi_flash_ops *ops = sf_get_ops(dev); - - if (!ops->get_sw_write_prot) - return -ENOSYS; - return log_ret(ops->get_sw_write_prot(dev)); -} - /* * TODO(sjg@chromium.org): This is an old-style function. We should remove * it when all SPI flash drivers use dm |