diff options
author | Tom Rini <trini@konsulko.com> | 2016-02-24 14:26:20 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-02-24 18:44:17 -0500 |
commit | fec26e7270ad31e4179d1bd189e5cd8ab93ccba3 (patch) | |
tree | 6a24a5af8d3c40956db407177e945493fd6a1ce3 /include/dfu.h | |
parent | e1417c7b66f4e0051a3aa242f655e85c1c96eef2 (diff) | |
parent | d7d8c00575c8ae766d387c763395470410427b69 (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-usb
Diffstat (limited to 'include/dfu.h')
-rw-r--r-- | include/dfu.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/dfu.h b/include/dfu.h index 6118dc27b9..f39d3f1171 100644 --- a/include/dfu.h +++ b/include/dfu.h @@ -163,6 +163,31 @@ int dfu_read(struct dfu_entity *de, void *buf, int size, int blk_seq_num); int dfu_write(struct dfu_entity *de, void *buf, int size, int blk_seq_num); int dfu_flush(struct dfu_entity *de, void *buf, int size, int blk_seq_num); +/* + * dfu_defer_flush - pointer to store dfu_entity for deferred flashing. + * It should be NULL when not used. + */ +extern struct dfu_entity *dfu_defer_flush; +/** + * dfu_get_defer_flush - get current value of dfu_defer_flush pointer + * + * @return - value of the dfu_defer_flush pointer + */ +static inline struct dfu_entity *dfu_get_defer_flush(void) +{ + return dfu_defer_flush; +} + +/** + * dfu_set_defer_flush - set the dfu_defer_flush pointer + * + * @param dfu - pointer to the dfu_entity, which should be written + */ +static inline void dfu_set_defer_flush(struct dfu_entity *dfu) +{ + dfu_defer_flush = dfu; +} + /** * dfu_write_from_mem_addr - write data from memory to DFU managed medium * |