]> git.karo-electronics.de Git - karo-tx-uboot.git/commit
x86: fix memalign() parameter order
authorStephen Warren <swarren@nvidia.com>
Fri, 12 Feb 2016 21:27:56 +0000 (14:27 -0700)
committerBin Meng <bmeng.cn@gmail.com>
Sun, 21 Feb 2016 05:42:51 +0000 (13:42 +0800)
commit4fd64d02b2bb7fe583c1246c79b9658223d96442
treeebc461d352bcac8a92c18c4fa514918de9ab3e48
parent20680b560a17fb29c862de77930cfbf76b24f83c
x86: fix memalign() parameter order

Purely by code inspection, it looks like the parameter order to memalign()
is swapped; its parameters are (align, size). 4096 is a likely desired
alignment, and a variable named size sounds like a size:-)

Fixes: 45b5a37836d5 ("x86: Add multi-processor init")
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Bin Meng <bmeng.cn@gmail.com>
arch/x86/cpu/mp_init.c