diff options
author | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | 2018-08-16 16:52:57 +0100 |
---|---|---|
committer | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | 2018-08-22 10:26:05 +0100 |
commit | 93c78ed231a6ea30f1c30ecbbb0f245fa9d75075 (patch) | |
tree | 35c3e08ad22a78f0caa552cb266ae6bb45ec53ce /plat/qemu | |
parent | 2fb88cb2e9050d4cda97f8de1e8f000a28599869 (diff) | |
download | platform_external_arm-trusted-firmware-93c78ed231a6ea30f1c30ecbbb0f245fa9d75075.tar.gz platform_external_arm-trusted-firmware-93c78ed231a6ea30f1c30ecbbb0f245fa9d75075.tar.bz2 platform_external_arm-trusted-firmware-93c78ed231a6ea30f1c30ecbbb0f245fa9d75075.zip |
libc: Fix all includes in codebase
The codebase was using non-standard headers. It is needed to replace
them by the correct ones so that we can use the new libc headers.
Change-Id: I530f71d9510cb036e69fe79823c8230afe890b9d
Acked-by: Sumit Garg <sumit.garg@linaro.org>
Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
Diffstat (limited to 'plat/qemu')
-rw-r--r-- | plat/qemu/qemu_private.h | 5 | ||||
-rw-r--r-- | plat/qemu/topology.c | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/plat/qemu/qemu_private.h b/plat/qemu/qemu_private.h index 800fa037f..0fb7cd5fd 100644 --- a/plat/qemu/qemu_private.h +++ b/plat/qemu/qemu_private.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015-2016, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ @@ -7,9 +7,8 @@ #ifndef __QEMU_PRIVATE_H #define __QEMU_PRIVATE_H -#include <sys/types.h> +#include <stdint.h> -#include <xlat_tables_defs.h> #include "../../bl1/bl1_private.h" void qemu_configure_mmu_secure(unsigned long total_base, diff --git a/plat/qemu/topology.c b/plat/qemu/topology.c index d7ba9b7e0..569d15f8c 100644 --- a/plat/qemu/topology.c +++ b/plat/qemu/topology.c @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2016, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include <arch.h> #include <platform_def.h> -#include <sys/types.h> +#include <stdint.h> #include "qemu_private.h" /* The power domain tree descriptor */ |