X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Funaligned.h;h=2654a2763fd5494575b0243e0431d461d5f5bac7;hb=77d14d9c7f9ce7245eff56aacd420646577892d0;hp=a5ae4be60067ee7dd486d0ca59b42e5d193ff52c;hpb=320232ec7f37218a6fce0704f9b0ba7696e5ad21;p=sliver-openvswitch.git diff --git a/lib/unaligned.h b/lib/unaligned.h index a5ae4be60..2654a2763 100644 --- a/lib/unaligned.h +++ b/lib/unaligned.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2011 Nicira Networks. + * Copyright (c) 2010, 2011 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -178,15 +178,15 @@ put_unaligned_u64(uint64_t *p, uint64_t x) static inline uint64_t get_32aligned_u64(const ovs_32aligned_u64 *x) { - return ((uint64_t) x->hi << 32) | x->lo; + return ((uint64_t) x->hi << 32) | x->lo; } /* Stores 'value' in 'x'. */ static inline void put_32aligned_u64(ovs_32aligned_u64 *x, uint64_t value) { - x->hi = value >> 32; - x->lo = value; + x->hi = value >> 32; + x->lo = value; } #ifndef __CHECKER__ @@ -195,9 +195,9 @@ static inline ovs_be64 get_32aligned_be64(const ovs_32aligned_be64 *x) { #ifdef WORDS_BIGENDIAN - return ((ovs_be64) x->hi << 32) | x->lo; + return ((ovs_be64) x->hi << 32) | x->lo; #else - return ((ovs_be64) x->lo << 32) | x->hi; + return ((ovs_be64) x->lo << 32) | x->hi; #endif } @@ -206,8 +206,8 @@ static inline void put_32aligned_be64(ovs_32aligned_be64 *x, ovs_be64 value) { #if WORDS_BIGENDIAN - x->hi = value >> 32; - x->lo = value; + x->hi = value >> 32; + x->lo = value; #else x->hi = value; x->lo = value >> 32;