diff --git a/subsys/mgmt/updatehub/updatehub_device.c b/subsys/mgmt/updatehub/updatehub_device.c index 266def89377..f1b66902ecc 100644 --- a/subsys/mgmt/updatehub/updatehub_device.c +++ b/subsys/mgmt/updatehub/updatehub_device.c @@ -1,12 +1,15 @@ /* - * Copyright (c) 2018-2020 O.S.Systems + * Copyright (c) 2018-2023 O.S.Systems * * SPDX-License-Identifier: Apache-2.0 */ -#include "updatehub_device.h" #include +#include + +#include "updatehub_device.h" + bool updatehub_get_device_identity(char *id, int id_max_len) { uint8_t hwinfo_id[DEVICE_ID_BIN_MAX_SIZE]; diff --git a/subsys/mgmt/updatehub/updatehub_device.h b/subsys/mgmt/updatehub/updatehub_device.h index f1944dab27f..c12bdd3f37e 100644 --- a/subsys/mgmt/updatehub/updatehub_device.h +++ b/subsys/mgmt/updatehub/updatehub_device.h @@ -7,9 +7,6 @@ #ifndef __UPDATEHUB_DEVICE_H__ #define __UPDATEHUB_DEVICE_H__ -#include -#include - #define DEVICE_ID_BIN_MAX_SIZE 64 #define DEVICE_ID_HEX_MAX_SIZE ((DEVICE_ID_BIN_MAX_SIZE * 2) + 1)