函数源码 |
Source File:include\linux\byteorder\generic.h |
Create Date:2022-07-27 06:38:14 |
首页 | Copyright©Brick |
158 159 160 161 162 163 164 165 | /* XXX: this stuff can be optimized */ static inline void le32_to_cpu_array(u32 *buf, unsigned int words) { while (words--) { __le32_to_cpus(buf); buf++; } } |