diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2019-05-27 17:25:23 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-05-29 20:05:52 +0000 |
commit | 3d6ccd0489cfc973ba6a9a47b3e5567cd3a40acb (patch) | |
tree | e06a328723b918721cdc4954786c786e11cbafc9 | |
parent | 4a402feebf6d8754a8ca8d2207607efd93ef8fe4 (diff) | |
download | coreboot-3d6ccd0489cfc973ba6a9a47b3e5567cd3a40acb.tar.xz |
soc/intel/common/cse: Declare g_cse statically
Change-Id: I91b6ce3b52d987e2fc0f79e550fda2891502bfe8
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33023
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
-rw-r--r-- | src/soc/intel/common/block/cse/cse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/cse/cse.c b/src/soc/intel/common/block/cse/cse.c index 302e6dec05..e4fc6e4ff1 100644 --- a/src/soc/intel/common/block/cse/cse.c +++ b/src/soc/intel/common/block/cse/cse.c @@ -69,7 +69,7 @@ #define MEI_HDR_CSE_ADDR (((1 << 8) - 1) << MEI_HDR_CSE_ADDR_START) -struct cse_device { +static struct cse_device { uintptr_t sec_bar; } g_cse CAR_GLOBAL; |