zephyr: boot_serial: fix CRC header warning

The crc16.h header has been deprecated in Zephyr.
Update include directive to use the new header.

Signed-off-by: Emanuele Di Santo <emdi@nordicsemi.no>
This commit is contained in:
Emanuele Di Santo 2019-01-11 12:59:00 +01:00 committed by Andrzej Puzdrowski
parent 9f1933d1a5
commit 401d7b33d3
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
#include <misc/byteorder.h>
#include <misc/__assert.h>
#include <flash.h>
#include <crc16.h>
#include <crc.h>
#include <base64.h>
#include <cbor.h>
#else