diff mbox series

[02/18] dfu: add prototype for dfu_transaction_initiate/cleanup

Message ID 20200318082503.8025-3-patrick.delaunay@st.com
State Accepted
Commit 5cf39720af39872bef541371cf7c35b96c7f0063
Delegated to: Patrick Delaunay
Headers show
Series stm32mp1: add command stm32prog | expand

Commit Message

Patrick DELAUNAY March 18, 2020, 8:24 a.m. UTC
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>
---

 include/dfu.h | 3 +++
 1 file changed, 3 insertions(+)

Comments

Patrice CHOTARD April 14, 2020, 12:58 p.m. UTC | #1
Hi

On 3/18/20 9:24 AM, Patrick Delaunay wrote:
> 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>
> ---
>
>  include/dfu.h | 3 +++
>  1 file changed, 3 insertions(+)
>
> 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.

Reviewed-by: Patrice Chotard <patrice.chotard@st.com>

Thanks

Patrice
diff mbox series

Patch

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.