diff mbox

[U-Boot,v2,2/5] spi_flash: Include spi_flash_cmd_write_status() prototype

Message ID 1442066256-11835-2-git-send-email-otavio@ossystems.com.br
State Rejected
Delegated to: Jagannadha Sutradharudu Teki
Headers show

Commit Message

Otavio Salvador Sept. 12, 2015, 1:57 p.m. UTC
Add a prototype for spi_flash_cmd_write_status(), so that it can be
used by other files.

Cc: Jagan Teki <jteki@openedev.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
Changes since v1:
- None

 include/spi_flash.h | 2 ++
 1 file changed, 2 insertions(+)
diff mbox

Patch

diff --git a/include/spi_flash.h b/include/spi_flash.h
index 3b2d555..4b13926 100644
--- a/include/spi_flash.h
+++ b/include/spi_flash.h
@@ -232,4 +232,6 @@  static inline int spi_flash_erase(struct spi_flash *flash, u32 offset,
 void spi_boot(void) __noreturn;
 void spi_spl_load_image(uint32_t offs, unsigned int size, void *vdst);
 
+int spi_flash_cmd_write_status(struct spi_flash *flash, u8 ws);
+
 #endif /* _SPI_FLASH_H_ */