From: Andreea-Cristina Bernat Date: Mon, 17 Mar 2014 01:00:01 +0000 (-0700) Subject: Staging: solo6x10: Replace expressions that don't use ALIGN macro X-Git-Tag: v3.15-rc1~139^2~391 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0cb6dfd710b00865258d1a70e9b62f3343a81b68;p=pandora-kernel.git Staging: solo6x10: Replace expressions that don't use ALIGN macro There are some expressions that compute the roundup of a number, but don't use the existing macro defined in /include/kernel.h. This patch uses the following Coccinelle semantic patch: @ haskernel @ @@ @ depends on haskernel @ expression E1, E2; @@ - (E1 + (E2 - 1)) & ~(E2 - 1) + ALIGN(E1, E2) Signed-off-by: Andreea-Cristina Bernat Acked-by: Bob Copeland Signed-off-by: Peter P Waskiewicz Jr --- Reading git-diff-tree failed