diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2020-03-18 09:24:47 +0100 |
---|---|---|
committer | Patrick Delaunay <patrick.delaunay@st.com> | 2020-05-14 09:02:12 +0200 |
commit | 5cf39720af39872bef541371cf7c35b96c7f0063 (patch) | |
tree | 78c7ae58d3949f0c807feb43a78791b0b72855ab | |
parent | bcd677f246e872c2c945d667ac1044cb735c8e14 (diff) | |
download | u-boot-5cf39720af39872bef541371cf7c35b96c7f0063.tar.gz u-boot-5cf39720af39872bef541371cf7c35b96c7f0063.tar.xz u-boot-5cf39720af39872bef541371cf7c35b96c7f0063.zip |
dfu: add prototype for dfu_transaction_initiate/cleanup
Add prototype for function dfu_transaction_initiate and
dfu_transaction_cleanup to avoid warning with W=1.
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>
-rw-r--r-- | include/dfu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/dfu.h b/include/dfu.h index fb5260d903..2f0e335ec0 100644 --- a/include/dfu.h +++ b/include/dfu.h @@ -209,6 +209,9 @@ void dfu_initiated_callback(struct dfu_entity *dfu); */ void dfu_flush_callback(struct dfu_entity *dfu); +int dfu_transaction_initiate(struct dfu_entity *dfu, bool read); +void dfu_transaction_cleanup(struct dfu_entity *dfu); + /* * dfu_defer_flush - pointer to store dfu_entity for deferred flashing. * It should be NULL when not used. |