• Adam Wujek's avatar
    fix FixedDelta castings to/from UInteger64 · af171a61
    Adam Wujek authored
    FixedDelta is defined as a struct of two 32bit values with architecture (endiannes)
    independent order:
    typedef struct _UInteger64 {
    	uint32_t	lsb;
    	uint32_t	msb;
    } _UInteger64;
    
    For WRPC the order of lsb and msb in 64bit type (not _UInteger64) is different,
    so direct cast between _(U)Integer64 and regular 64bit types is not allowed.
    Signed-off-by: 's avatarAdam Wujek <adam.wujek@creotech.pl>
    af171a61
Name
Last commit
Last update
..
assert.c Loading commit data...
cmdline.c Loading commit data...
conf.c Loading commit data...
div64.c Loading commit data...
drop.c Loading commit data...
dump-funcs.c Loading commit data...
faults.c Loading commit data...
libc-functions.c Loading commit data...
network_types.h Loading commit data...
time-arith.c Loading commit data...