Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
2dfab27a
Commit
2dfab27a
authored
7 years ago
by
davidcunado-arm
Committed by
GitHub
7 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #1044 from islmit01/im/fix_includes
Fix order of #includes
parents
2f860c78
769fb6b6
master
v2.5
v2.5-rc1
v2.5-rc0
v2.4
v2.4-rc2
v2.4-rc1
v2.4-rc0
v2.3
v2.3-rc2
v2.3-rc1
v2.3-rc0
v2.2
v2.2-rc2
v2.2-rc1
v2.2-rc0
v2.1
v2.1-rc1
v2.1-rc0
v2.0
v2.0-rc0
v1.6
v1.6-rc1
v1.6-rc0
v1.5
v1.5-rc3
v1.5-rc2
v1.5-rc1
v1.5-rc0
arm_cca_v0.2
arm_cca_v0.1
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
tools/fiptool/fiptool.c
+1
-0
tools/fiptool/fiptool.c
tools/fiptool/fiptool.h
+1
-2
tools/fiptool/fiptool.h
tools/fiptool/tbbr_config.c
+2
-1
tools/fiptool/tbbr_config.c
with
4 additions
and
3 deletions
+4
-3
tools/fiptool/fiptool.c
View file @
2dfab27a
...
...
@@ -19,6 +19,7 @@
#include <unistd.h>
#include <openssl/sha.h>
#include <firmware_image_package.h>
#include "fiptool.h"
...
...
This diff is collapsed.
Click to expand it.
tools/fiptool/fiptool.h
View file @
2dfab27a
...
...
@@ -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))
...
...
This diff is collapsed.
Click to expand it.
tools/fiptool/tbbr_config.c
View file @
2dfab27a
...
...
@@ -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. */
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help