From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752485AbdI1Ixc (ORCPT ); Thu, 28 Sep 2017 04:53:32 -0400 Received: from mail-pg0-f68.google.com ([74.125.83.68]:37750 "EHLO mail-pg0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752357AbdI1Ixa (ORCPT ); Thu, 28 Sep 2017 04:53:30 -0400 X-Google-Smtp-Source: AOwi7QBmQCWGab9nhr27GeG08JsE2dxwykcs3idvc9zxKNIhxSs565yC4Oxb1rtWU8nyHP0Jk8SnDQ== Date: Thu, 28 Sep 2017 14:23:21 +0530 From: Keerthi Reddy To: german.rivera@freescale.com, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, gregkh@linuxfoundation.org, outreachy-kernel@googlegroups.com Subject: [PATCH] Staging: fsl-mc: remove unnecessary parenthesis Message-ID: <20170928085321.GA4240@manoharreddy> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Remove unnecessary parenthesis Signed-off-by: Keerthi Reddy --- drivers/staging/fsl-mc/bus/fsl-mc-msi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/fsl-mc/bus/fsl-mc-msi.c b/drivers/staging/fsl-mc/bus/fsl-mc-msi.c index 038da4d..f74a6f1 100644 --- a/drivers/staging/fsl-mc/bus/fsl-mc-msi.c +++ b/drivers/staging/fsl-mc/bus/fsl-mc-msi.c @@ -137,7 +137,7 @@ static void fsl_mc_msi_update_chip_ops(struct msi_domain_info *info) { struct irq_chip *chip = info->chip; - if (WARN_ON((!chip))) + if (WARN_ON(!chip)) return; /* -- 2.7.4