From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751513AbeETIA6 (ORCPT ); Sun, 20 May 2018 04:00:58 -0400 Received: from mail-pg0-f66.google.com ([74.125.83.66]:34649 "EHLO mail-pg0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751292AbeETIA4 (ORCPT ); Sun, 20 May 2018 04:00:56 -0400 X-Google-Smtp-Source: AB8JxZpkAAvXYQ5U80vqcRwDuSO/opqPXr49zJnEFa7eiubz+4iyRUUK6KhNEfe3nJtVgd17CqVhGA== From: Varsha Rao To: Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , x86@kernel.org, linux-kernel@vger.kernel.org, Lukas Bulwahn , Nicholas Mc Guire Cc: Varsha Rao Subject: [PATCH] x86: platform: uv: Remove extra parentheses Date: Sun, 20 May 2018 13:30:12 +0530 Message-Id: <20180520080012.8215-1-rvarsha016@gmail.com> X-Mailer: git-send-email 2.17.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Remove extra parentheses to fix the extraneous parentheses clang warning. Suggested-by: Lukas Bulwahn Signed-off-by: Varsha Rao --- arch/x86/platform/uv/tlb_uv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/platform/uv/tlb_uv.c b/arch/x86/platform/uv/tlb_uv.c index b36caae0fb2f..b96d38288c60 100644 --- a/arch/x86/platform/uv/tlb_uv.c +++ b/arch/x86/platform/uv/tlb_uv.c @@ -615,7 +615,7 @@ static int uv2_3_wait_completion(struct bau_desc *bau_desc, /* spin on the status MMR, waiting for it to go idle */ while (descriptor_stat != UV2H_DESC_IDLE) { - if ((descriptor_stat == UV2H_DESC_SOURCE_TIMEOUT)) { + if (descriptor_stat == UV2H_DESC_SOURCE_TIMEOUT) { /* * A h/w bug on the destination side may * have prevented the message being marked -- 2.17.0