Re: [U-Boot] [PATCH v7 17/21] bitops: Add fls_long and __ffs64

2015-11-06 Thread Tom Rini
On Thu, Nov 05, 2015 at 12:43:38PM -0200, Fabio Estevam wrote: > Add fls_long and __ffs64 support to align with the kernel bitops > implementation. > > Signed-off-by: Fabio Estevam Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature

[U-Boot] [PATCH v7 17/21] bitops: Add fls_long and __ffs64

2015-11-05 Thread Fabio Estevam
Add fls_long and __ffs64 support to align with the kernel bitops implementation. Signed-off-by: Fabio Estevam --- Changes since v6: - Newly introduced in this series. - Only touch include/linux/bitops.h after all the arch bitops headers have been added. This is done to avoid build warnings (Danie