mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-19 02:54:24 +00:00
Merge pull request #1044 from islmit01/im/fix_includes
Fix order of #includes
This commit is contained in:
commit
2dfab27a75
3 changed files with 4 additions and 3 deletions
|
@ -19,6 +19,7 @@
|
|||
#include <unistd.h>
|
||||
|
||||
#include <openssl/sha.h>
|
||||
|
||||
#include <firmware_image_package.h>
|
||||
|
||||
#include "fiptool.h"
|
||||
|
|
|
@ -7,11 +7,10 @@
|
|||
#ifndef __FIPTOOL_H__
|
||||
#define __FIPTOOL_H__
|
||||
|
||||
#include <firmware_image_package.h>
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include <firmware_image_package.h>
|
||||
#include <uuid.h>
|
||||
|
||||
#define NELEM(x) (sizeof (x) / sizeof *(x))
|
||||
|
|
|
@ -4,9 +4,10 @@
|
|||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <firmware_image_package.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include <firmware_image_package.h>
|
||||
|
||||
#include "tbbr_config.h"
|
||||
|
||||
/* The images used depends on the platform. */
|
||||
|
|
Loading…
Add table
Reference in a new issue