diff options
author | Anton Blanchard <anton@samba.org> | 2014-10-30 23:47:26 -0400 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2014-11-09 17:59:32 -0500 |
commit | 6f791bef76d66923bc250cbbf4ddbf3f1c944686 (patch) | |
tree | 01375ad89a66b10210119d751510c9605e961b72 | |
parent | a3e5b356b3ab40b00ecb0f6fde445db719c100b5 (diff) |
powerpc: Remove double braces in alignment code.
Looks like I introduced this when adding LE support.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
-rw-r--r-- | arch/powerpc/kernel/align.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/align.c b/arch/powerpc/kernel/align.c index 34f55524d456..86150fbb42c3 100644 --- a/arch/powerpc/kernel/align.c +++ b/arch/powerpc/kernel/align.c | |||
@@ -908,7 +908,7 @@ int fix_alignment(struct pt_regs *regs) | |||
908 | flush_fp_to_thread(current); | 908 | flush_fp_to_thread(current); |
909 | } | 909 | } |
910 | 910 | ||
911 | if ((nb == 16)) { | 911 | if (nb == 16) { |
912 | if (flags & F) { | 912 | if (flags & F) { |
913 | /* Special case for 16-byte FP loads and stores */ | 913 | /* Special case for 16-byte FP loads and stores */ |
914 | PPC_WARN_ALIGNMENT(fp_pair, regs); | 914 | PPC_WARN_ALIGNMENT(fp_pair, regs); |