commit | 960a63973b21d540e2d3d7be229429e06280bacd | [log] [tgz] |
---|---|---|
author | Grygorii Strashko <grygorii.strashko@ti.com> | Thu Jun 28 14:25:52 2018 -0500 |
committer | Tom Rini <trini@konsulko.com> | Thu Jul 19 16:31:36 2018 -0400 |
tree | b8c3a34a9e8ff25aa4a12bc63bfe049c5e412889 | |
parent | c95848cdec33f16545d12a025d28edc8edb114dd [diff] |
arm/arm64: bitops: fix find_next_zero_bit to be compat with arm64 Current implementation of find_next_zero_bit() is incompatible with arm64. Hence fix it by using BITS_PER_LONG define instead of constants and use generic ffz() implementation. Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>