--- /dev/null
+From oliver.pntr@gmail.com Fri Feb 1 16:03:22 2008
+From: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
+Date: Sat, 8 Dec 2007 15:47:02 +0100
+Subject: POWERPC: Fix invalid semicolon after if statement
+To: stable@kernel.org
+Message-ID: <6101e8c40712080647r22def0bescdd953813c038184@mail.gmail.com>
+
+From: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
+
+Patch 2b02d13996fe28478e45605de9bd8bdca25718de in mainline
+
+[POWERPC] Fix invalid semicolon after if statement
+
+A similar fix to netfilter from Eric Dumazet inspired me to
+look around a bit by using some grep/sed stuff as looking for
+this kind of bugs seemed easy to automate. This is one of them
+I found where it looks like this semicolon is not valid.
+
+Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
+Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
+Signed-off-by: Paul Mackerras <paulus@samba.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
+
+---
+ arch/powerpc/mm/hash_utils_64.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/arch/powerpc/mm/hash_utils_64.c
++++ b/arch/powerpc/mm/hash_utils_64.c
+@@ -795,7 +795,7 @@ void hash_preload(struct mm_struct *mm,
+
+ #ifdef CONFIG_PPC_MM_SLICES
+ /* We only prefault standard pages for now */
+- if (unlikely(get_slice_psize(mm, ea) != mm->context.user_psize));
++ if (unlikely(get_slice_psize(mm, ea) != mm->context.user_psize))
+ return;
+ #endif
+