mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
include/linux/byteorder: fix cpu_to_be32_array()
In cpu_to_be32_array() and be32_to_cpu_array() we should not compare an int counter to a size_t parameter. Correct the type of the counter. This exists in upstream as b4c80629c5c9 ("include/linux/byteorder/generic.h: fix index variables"). Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
672c170f68
commit
c8f9e666ab
1 changed files with 2 additions and 2 deletions
|
@ -190,7 +190,7 @@ static inline void be64_add_cpu(__be64 *var, u64 val)
|
||||||
|
|
||||||
static inline void cpu_to_be32_array(__be32 *dst, const u32 *src, size_t len)
|
static inline void cpu_to_be32_array(__be32 *dst, const u32 *src, size_t len)
|
||||||
{
|
{
|
||||||
int i;
|
size_t i;
|
||||||
|
|
||||||
for (i = 0; i < len; i++)
|
for (i = 0; i < len; i++)
|
||||||
dst[i] = cpu_to_be32(src[i]);
|
dst[i] = cpu_to_be32(src[i]);
|
||||||
|
@ -198,7 +198,7 @@ static inline void cpu_to_be32_array(__be32 *dst, const u32 *src, size_t len)
|
||||||
|
|
||||||
static inline void be32_to_cpu_array(u32 *dst, const __be32 *src, size_t len)
|
static inline void be32_to_cpu_array(u32 *dst, const __be32 *src, size_t len)
|
||||||
{
|
{
|
||||||
int i;
|
size_t i;
|
||||||
|
|
||||||
for (i = 0; i < len; i++)
|
for (i = 0; i < len; i++)
|
||||||
dst[i] = be32_to_cpu(src[i]);
|
dst[i] = be32_to_cpu(src[i]);
|
||||||
|
|
Loading…
Reference in a new issue