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_internal.h | |
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_internal.h')
-rw-r--r-- | drivers/mtd/spi/sf_internal.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/drivers/mtd/spi/sf_internal.h b/drivers/mtd/spi/sf_internal.h index ce0cf4c428b..dabd40a4cc1 100644 --- a/drivers/mtd/spi/sf_internal.h +++ b/drivers/mtd/spi/sf_internal.h @@ -75,12 +75,18 @@ extern const struct flash_info spi_nor_ids[]; #define JEDEC_MFR(info) ((info)->id[0]) #define JEDEC_ID(info) (((info)->id[1]) << 8 | ((info)->id[2])) -/* Get software write-protect value (BP bits) */ -int spi_flash_cmd_get_sw_write_prot(struct spi_flash *flash); - - #if CONFIG_IS_ENABLED(SPI_FLASH_MTD) int spi_flash_mtd_register(struct spi_flash *flash); void spi_flash_mtd_unregister(void); +#else +static inline int spi_flash_mtd_register(struct spi_flash *flash) +{ + return 0; +} + +static inline void spi_flash_mtd_unregister(void) +{ +} #endif + #endif /* _SF_INTERNAL_H_ */ |