The patch titled
     m68k: ARRAY_SIZE() cleanup
has been added to the -mm tree.  Its filename is
     m68k-array_size-cleanup.patch

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this

------------------------------------------------------
Subject: m68k: ARRAY_SIZE() cleanup
From: Alejandro Martinez Ruiz <[EMAIL PROTECTED]>

Signed-off-by: Alejandro Martinez Ruiz <[EMAIL PROTECTED]>
Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]>
Cc: Roman Zippel <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 arch/m68k/amiga/amisound.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN arch/m68k/amiga/amisound.c~m68k-array_size-cleanup 
arch/m68k/amiga/amisound.c
--- a/arch/m68k/amiga/amisound.c~m68k-array_size-cleanup
+++ a/arch/m68k/amiga/amisound.c
@@ -21,7 +21,7 @@ static const signed char sine_data[] = {
        0,  39,  75,  103,  121,  127,  121,  103,  75,  39,
        0, -39, -75, -103, -121, -127, -121, -103, -75, -39
 };
-#define DATA_SIZE      (sizeof(sine_data)/sizeof(sine_data[0]))
+#define DATA_SIZE      ARRAY_SIZE(sine_data)
 
 #define custom amiga_custom
 
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

git-arm.patch
git-mips.patch
git-netdev-all.patch
m68k-array_size-cleanup.patch
dio-array_size-cleanup.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to