dfu: fix includes

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2017-09-30 10:23:18 -04:00 committed by Anas Nashif
parent 6c8d01e6bb
commit e5ffa66d84
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@
#include <misc/__assert.h> #include <misc/__assert.h>
#include <board.h> #include <board.h>
#include "mcuboot.h" #include <dfu/mcuboot.h>
/* /*
* Helpers for image trailer, as defined by mcuboot. * Helpers for image trailer, as defined by mcuboot.

View file

@ -16,7 +16,7 @@
#include <errno.h> #include <errno.h>
#include <flash.h> #include <flash.h>
#include <board.h> #include <board.h>
#include "flash_img.h" #include <dfu/flash_img.h>
BUILD_ASSERT_MSG((CONFIG_IMG_BLOCK_BUF_SIZE % FLASH_ALIGN == 0), BUILD_ASSERT_MSG((CONFIG_IMG_BLOCK_BUF_SIZE % FLASH_ALIGN == 0),
"CONFIG_IMG_BLOCK_BUF_SIZE is not multiple of FLASH_ALIGN"); "CONFIG_IMG_BLOCK_BUF_SIZE is not multiple of FLASH_ALIGN");