From 0b9d22dc579385798d600ccbee022380364f0698 Mon Sep 17 00:00:00 2001 From: Himangi Saraogi Date: Tue, 17 Jun 2014 01:40:04 +0530 Subject: [PATCH] zorro: Use ARRAY_SIZE ARRAY_SIZE is more concise to use when the size of an array is divided by the size of its type or the size of its first element. The Coccinelle semantic patch that makes this change is as follows: // @@ type T; T[] E; @@ - (sizeof(E)/sizeof(T)) + ARRAY_SIZE(E) // Signed-off-by: Himangi Saraogi [Geert: Also convert the MANUF definition] Signed-off-by: Geert Uytterhoeven --- Reading git-format-patch failed