From: Anton Blanchard Date: Fri, 31 Oct 2014 03:47:26 +0000 (+1100) Subject: powerpc: Remove double braces in alignment code. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6f791bef76d66923bc250cbbf4ddbf3f1c944686;p=linux-beck.git powerpc: Remove double braces in alignment code. Looks like I introduced this when adding LE support. Signed-off-by: Anton Blanchard Signed-off-by: Michael Ellerman --- 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) flush_fp_to_thread(current); } - if ((nb == 16)) { + if (nb == 16) { if (flags & F) { /* Special case for 16-byte FP loads and stores */ PPC_WARN_ALIGNMENT(fp_pair, regs);