File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
subsys/dfu/dfu_target/src Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 99#include <dfu/dfu_target.h>
1010#include <dfu/dfu_target_stream.h>
1111#include <zephyr/devicetree.h>
12- #ifdef CONFIG_SSF_SUIT_SERVICE_ENABLED
13- #include <sdfw/sdfw_services/suit_service.h>
14- #endif /* CONFIG_SSF_SUIT_SERVICE_ENABLED */
1512#include <suit_envelope_info.h>
1613#ifdef CONFIG_DFU_TARGET_SUIT_CACHE_PROCESSING
1714#include <suit_dfu_cache_rw.h>
@@ -197,7 +194,7 @@ int dfu_target_suit_reset(void)
197194 return rc ;
198195 }
199196
200- suit_ssf_err_t err = suit_dfu_cleanup ();
197+ int err = suit_dfu_cleanup ();
201198
202199 stream_flash_in_use = false;
203200 stream_buf_bytes = 0 ;
@@ -215,7 +212,7 @@ int dfu_target_suit_reboot(void)
215212{
216213 k_msleep (CONFIG_DFU_TARGET_REBOOT_RESET_DELAY_MS );
217214
218- suit_ssf_err_t err = suit_dfu_update_start ();
215+ int err = suit_dfu_update_start ();
219216
220217 if (err < 0 ) {
221218 LOG_ERR ("Failed to start firmware upgrade!" );
You can’t perform that action at this time.
0 commit comments