Home
last modified time | relevance | path

Searched refs:u32Val (Results 1 – 1 of 1) sorted by relevance

/wlan-driver/qcacld-3.0/core/mac/src/pe/lim/
H A Dlim_ser_des_utils.h62 static inline void lim_copy_u32(uint8_t *ptr, uint32_t u32Val) in lim_copy_u32() argument
66 *ptr++ = (uint8_t) (u32Val & 0xff); in lim_copy_u32()
67 *ptr++ = (uint8_t) ((u32Val >> 8) & 0xff); in lim_copy_u32()
68 *ptr++ = (uint8_t) ((u32Val >> 16) & 0xff); in lim_copy_u32()
69 *ptr = (uint8_t) ((u32Val >> 24) & 0xff); in lim_copy_u32()