diff options
author | Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> | 2007-08-15 18:03:35 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-08-16 20:48:52 -0400 |
commit | 2b02d13996fe28478e45605de9bd8bdca25718de (patch) | |
tree | 0cc50902ba6d7328279f88e960fdc9a439a6c340 /arch/powerpc | |
parent | 2de69124e86682c3427adb4136e097854841e467 (diff) |
[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>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/mm/hash_utils_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/mm/hash_utils_64.c b/arch/powerpc/mm/hash_utils_64.c index f1789578747a..a47151e806ca 100644 --- 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, unsigned long ea, | |||
795 | 795 | ||
796 | #ifdef CONFIG_PPC_MM_SLICES | 796 | #ifdef CONFIG_PPC_MM_SLICES |
797 | /* We only prefault standard pages for now */ | 797 | /* We only prefault standard pages for now */ |
798 | if (unlikely(get_slice_psize(mm, ea) != mm->context.user_psize)); | 798 | if (unlikely(get_slice_psize(mm, ea) != mm->context.user_psize)) |
799 | return; | 799 | return; |
800 | #endif | 800 | #endif |
801 | 801 | ||