]> git.baikalelectronics.ru Git - arm-tf.git/commitdiff
fix(uuid): add missing `#include` directives
authorChris Kay <chris.kay@arm.com>
Thu, 13 Apr 2023 16:24:20 +0000 (17:24 +0100)
committerChris Kay <chris.kay@arm.com>
Mon, 17 Apr 2023 15:13:16 +0000 (16:13 +0100)
These include directives were missing from both `uuid.h` files.

Change-Id: I875dfda3e0985728277b72f0e7597dde5cf9d304
Signed-off-by: Chris Kay <chris.kay@arm.com>
changelog.yaml
common/uuid.c
include/common/uuid.h
include/tools_share/uuid.h

index a514abd80020746abc537e843197aab957151dcf..7dcb4dfda8b9540d08a1b532bcecb290662b55ec 100644 (file)
@@ -1190,6 +1190,9 @@ subsections:
             deprecated:
               - plat/nxp/common/psci
 
+      - title: UUID
+        scope: uuid
+
   - title: Documentation
     scope: docs
 
@@ -1278,4 +1281,3 @@ subsections:
 
       - title: zlib
         scope: zlib
-
index 3e47eb4ba3e08aceee635920662ce68d2feef03d..969eda1471146b1aeb7d6dfed8f4f62210b934cb 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved.
+ * Copyright (c) 2021-2023, Arm Limited and Contributors. All rights reserved.
  *
  * SPDX-License-Identifier: BSD-3-Clause
  */
 
 #include <assert.h>
 #include <errno.h>
-#include <stdint.h>
 #include <string.h>
 
 #include <common/debug.h>
index c8dd6819727529b592d3d878838fdacf996e26f5..634880449f15529dd0686cc9bed1eaace8edad29 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved.
+ * Copyright (c) 2021-2023, Arm Limited and Contributors. All rights reserved.
  *
  * SPDX-License-Identifier: BSD-3-Clause
  */
@@ -7,6 +7,9 @@
 #ifndef UUID_COMMON_H
 #define UUID_COMMON_H
 
+#include <stdbool.h>
+#include <stdint.h>
+
 #define UUID_BYTES_LENGTH      16
 #define UUID_STRING_LENGTH     36
 
index 2ced3a3fabd51a4f544745dc9419223e23f729ba..3445f20265740069af742e8d6ff7a9f13eee183c 100644 (file)
  */
 
 /*
- * Portions copyright (c) 2014-2020, ARM Limited and Contributors.
+ * Portions copyright (c) 2014-2023, Arm Limited and Contributors.
  * All rights reserved.
  */
 
 #ifndef UUID_H
 #define UUID_H
 
+#include <stdint.h>
+
 /* Length of a node address (an IEEE 802 address). */
 #define        _UUID_NODE_LEN          6