diff options
author | Stefan Reinauer <stepan@openbios.org> | 2005-11-14 23:04:55 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2005-11-14 23:04:55 +0000 |
commit | 0d304c18e2cf1451a45c69aac61198d896da1e4d (patch) | |
tree | 3e0e47da22601967fb4c5b9c5c4ee31befe818fc /util/lbtdump | |
parent | 8af7998bacc11c66381836c28b099a4407da955c (diff) |
comment and unify lb_uint64 handling as discussed on the mailinglist
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2086 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/lbtdump')
-rw-r--r-- | util/lbtdump/lbtdump.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/util/lbtdump/lbtdump.c b/util/lbtdump/lbtdump.c index 4b5d9dfa65..e799e8d0c3 100644 --- a/util/lbtdump/lbtdump.c +++ b/util/lbtdump/lbtdump.c @@ -9,14 +9,6 @@ #include <sys/mman.h> #include "../../src/include/boot/linuxbios_tables.h" -static inline uint64_t unpack_lb64(struct lb_uint64 value) -{ - uint64_t result; - result = value.hi; - result = (result << 32) + value.lo; - return result; -} - void print_lb_records(struct lb_record *rec, struct lb_record *last, unsigned long addr); unsigned long compute_checksum(void *addr, unsigned long length) |