aboutsummaryrefslogtreecommitdiff
path: root/libstb
diff options
context:
space:
mode:
authorNicholas Piggin <npiggin@gmail.com>2019-12-08 22:23:10 +1000
committerOliver O'Halloran <oohall@gmail.com>2019-12-16 14:50:56 +1100
commit5178691d0ad8d684f061d596dc6e025823fc0fec (patch)
tree7a9c85f6eabad8b9156ad6dc10b6a1ce49540672 /libstb
parenta0cf95fea1f6681f866e4cb449bde56bf729819e (diff)
downloadskiboot-5178691d0ad8d684f061d596dc6e025823fc0fec.zip
skiboot-5178691d0ad8d684f061d596dc6e025823fc0fec.tar.gz
skiboot-5178691d0ad8d684f061d596dc6e025823fc0fec.tar.bz2
add more sparse endian annotations
This fixes quite a few sparse endian annotations across the tree. Signed-off-by: Nicholas Piggin <npiggin@gmail.com> Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Diffstat (limited to 'libstb')
-rw-r--r--libstb/secureboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstb/secureboot.c b/libstb/secureboot.c
index bfc98f2..022e2aa 100644
--- a/libstb/secureboot.c
+++ b/libstb/secureboot.c
@@ -163,7 +163,7 @@ void secureboot_init(void)
int secureboot_verify(enum resource_id id, void *buf, size_t len)
{
const char *name;
- uint64_t log;
+ __be64 log;
int rc = -1;
name = flash_map_resource_name(id);