diff options
author | Aaron Durbin <adurbin@chromium.org> | 2014-08-13 16:15:49 -0500 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-03-26 00:27:18 +0100 |
commit | a69a67be13425b769efd9ff2a882de77365be00e (patch) | |
tree | 557773c1e10a82e74ce9bec4684eae1e4daddcc3 | |
parent | 7158f609c94d006cbb2af24558401628cd1baebd (diff) | |
download | coreboot-a69a67be13425b769efd9ff2a882de77365be00e.tar.xz |
tegra132: include what is actually used
The clk_rst.h file wasn't including files that had
functionality it was using resulting in broken builds
if just this file was included.
BUG=None
BRANCH=None
TEST=Built with just this file included -> no more errors.
Change-Id: I229cb3890f1320edc3bc3e82469b301cbaff0f72
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: 03b455aa9da64d6e110690206db65939ca023c27
Original-Change-Id: I8dc0fcab363e1089587e6dc8ff04c2a76c5e364c
Original-Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Original-Reviewed-on: https://chromium-review.googlesource.com/212331
Original-Reviewed-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-on: http://review.coreboot.org/8936
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rw-r--r-- | src/soc/nvidia/tegra132/clk_rst.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/nvidia/tegra132/clk_rst.h b/src/soc/nvidia/tegra132/clk_rst.h index 9e2b33f4d7..04a65d3faa 100644 --- a/src/soc/nvidia/tegra132/clk_rst.h +++ b/src/soc/nvidia/tegra132/clk_rst.h @@ -16,6 +16,8 @@ #ifndef _TEGRA132_CLK_RST_H_ #define _TEGRA132_CLK_RST_H_ +#include <stdint.h> +#include <stddef.h> /* Clock/Reset Controller (CLK_RST_CONTROLLER_) regs */ struct __attribute__ ((__packed__)) clk_rst_ctlr { |