Hi Tom, On Wed, Nov 4, 2015 at 1:45 AM, Fabio Estevam <[email protected]> wrote: > On Tue, Nov 3, 2015 at 11:47 PM, Tom Rini <[email protected]> wrote: > >> NAK. >> >> So, this blows up badly for a lot of things when I do: >> ./tools/buildman/buildman -b master --force-build --step 0 -Cdvel >> 'blackfin|microblaze|m68k|nds32|x86|aarch64|sandbox|mips|avr32|arm|powerpc|sh4|sparc' > > It seems I missed to add bitops for avr32 and mips. Will work on it tomorrow.
I don't see issues after applying the three attached patches. Thanks
From 09b289e8a372b21d1ffe0c1484d1bb3c392e01c3 Mon Sep 17 00:00:00 2001 From: Fabio Estevam <[email protected]> Date: Wed, 4 Nov 2015 08:35:02 -0200 Subject: [PATCH 1/3] mips: Use the generic bitops headers The generic bitops headers are required when calling logarithimic functions, such as ilog2(). Signed-off-by: Fabio Estevam <[email protected]> --- arch/mips/include/asm/bitops.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/arch/mips/include/asm/bitops.h b/arch/mips/include/asm/bitops.h index b5c2a63..c31ff6e 100644 --- a/arch/mips/include/asm/bitops.h +++ b/arch/mips/include/asm/bitops.h @@ -17,6 +17,11 @@ #include <asm/sgidefs.h> #include <asm/system.h> +#include <asm-generic/bitops/fls.h> +#include <asm-generic/bitops/__fls.h> +#include <asm-generic/bitops/fls64.h> +#include <asm-generic/bitops/__ffs.h> + /* * clear_bit() doesn't provide any barrier for the compiler. */ -- 1.9.1
From 6e5e4e9d87073d012fd0b5eb999cf7fc04f7002f Mon Sep 17 00:00:00 2001 From: Fabio Estevam <[email protected]> Date: Wed, 4 Nov 2015 08:35:36 -0200 Subject: [PATCH 2/3] arc: Use the generic bitops headers The generic bitops headers are required when calling logarithimic functions, such as ilog2(). Signed-off-by: Fabio Estevam <[email protected]> --- arch/arc/include/asm/bitops.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/arch/arc/include/asm/bitops.h b/arch/arc/include/asm/bitops.h index 85721aa..370cb46 100644 --- a/arch/arc/include/asm/bitops.h +++ b/arch/arc/include/asm/bitops.h @@ -16,4 +16,9 @@ #define hweight16(x) generic_hweight16(x) #define hweight8(x) generic_hweight8(x) +#include <asm-generic/bitops/fls.h> +#include <asm-generic/bitops/__fls.h> +#include <asm-generic/bitops/fls64.h> +#include <asm-generic/bitops/__ffs.h> + #endif /* __ASM_ARC_BITOPS_H */ -- 1.9.1
From ebbbfa0cd47881646b160f372a220773691853c5 Mon Sep 17 00:00:00 2001 From: Fabio Estevam <[email protected]> Date: Wed, 4 Nov 2015 08:38:45 -0200 Subject: [PATCH 3/3] avr32: Use the generic bitops headers The generic bitops headers are required when calling logarithimic functions, such as ilog2(). Signed-off-by: Fabio Estevam <[email protected]> --- arch/avr32/include/asm/bitops.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/arch/avr32/include/asm/bitops.h b/arch/avr32/include/asm/bitops.h index 0ec6784..0d425c2 100644 --- a/arch/avr32/include/asm/bitops.h +++ b/arch/avr32/include/asm/bitops.h @@ -6,4 +6,9 @@ #ifndef __ASM_AVR32_BITOPS_H #define __ASM_AVR32_BITOPS_H +#include <asm-generic/bitops/fls.h> +#include <asm-generic/bitops/__fls.h> +#include <asm-generic/bitops/fls64.h> +#include <asm-generic/bitops/__ffs.h> + #endif /* __ASM_AVR32_BITOPS_H */ -- 1.9.1
_______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

