commit | 43381474ff99afc02b0433acfdf48ebdd6d11ce2 | [log] [tgz] |
---|---|---|
author | Ashish kumar <Ashish.kumar@nxp.com> | Fri Jan 22 15:50:10 2016 +0530 |
committer | York Sun <york.sun@nxp.com> | Mon Jan 25 12:30:31 2016 -0800 |
tree | 9f3bd0da9beed3600337a1f108285ea39598a4e8 | |
parent | 2c0d69713c5f1cd0e3caee20b3725dc8d0b9aa77 [diff] |
arch/powperpc: Fix start_align due to use of __ffs64() instead ffs64() Incorrect DDR law was created in case of B4860qds after commit 2d2f490d. Return value of ffs64() differs from __ffs64(), eg. ffs64(0x80000000) = 0x20 __ffs64(0x80000000) = 0x1f As a result of this change, callers need to adjust the expected return value by removing -1. Signed-off-by: Ashish Kumar <Ashish.Kumar@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>