the following patch was just integrated into master: commit 50f313c8b2cae372d3d3868940c445aeb221ec1e Author: Patrick Georgi patrick@georgi-clan.de Date: Fri Feb 22 20:19:20 2013 +0100
*/acpi_tables.c: Use ALIGN macro
At the request of Paul Menzel, I reran an old classic of a coccinelle script: @@ expression E; @@ -(E + 7) & -8 +ALIGN(E, 8)
@@ expression E; @@ -(E + 15) & -16 +ALIGN(E, 16)
Change-Id: I01da31b241585e361380f75aacf3deddb13d11c3 Signed-off-by: Patrick Georgi patrick@georgi-clan.de Reviewed-on: http://review.coreboot.org/2487 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth martin.roth@se-eng.com Reviewed-by: Paul Menzel paulepanter@users.sourceforge.net
Build-Tested: build bot (Jenkins) at Fri Feb 22 20:31:16 2013, giving +1 Reviewed-By: Martin Roth martin.roth@se-eng.com at Fri Feb 22 21:47:07 2013, giving +2 Reviewed-By: Paul Menzel paulepanter@users.sourceforge.net at Fri Feb 22 22:38:49 2013, giving +2 See http://review.coreboot.org/2487 for details.
-gerrit