mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
bch: Fix build on FreeBSD host
endian.h on FreeBSD system exist in sys/ subdirectory. FreeBSD already have a fls function defined in strings.h which is included in string.h if __BSD_VISIBLE is defined, as a check for this. Signed-off-by: Emmanuel Vadot <manu@bidouilliste.com>
This commit is contained in:
@@ -61,7 +61,11 @@
|
||||
#include <linux/bitops.h>
|
||||
#else
|
||||
#include <errno.h>
|
||||
#if defined(__FreeBSD__)
|
||||
#include <sys/endian.h>
|
||||
#else
|
||||
#include <endian.h>
|
||||
#endif
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
@@ -113,6 +117,7 @@ struct gf_poly_deg1 {
|
||||
};
|
||||
|
||||
#ifdef USE_HOSTCC
|
||||
#ifndef __BSD_VISIBLE
|
||||
static int fls(int x)
|
||||
{
|
||||
int r = 32;
|
||||
@@ -142,6 +147,7 @@ static int fls(int x)
|
||||
return r;
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/*
|
||||
* same as encode_bch(), but process input data one byte at a time
|
||||
|
Reference in New Issue
Block a user