Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933115AbbHDJ5a (ORCPT ); Tue, 4 Aug 2015 05:57:30 -0400 Received: from mx0a-0016ce01.pphosted.com ([67.231.148.157]:16558 "EHLO mx0a-0016ce01.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933039AbbHDJ51 convert rfc822-to-8bit (ORCPT ); Tue, 4 Aug 2015 05:57:27 -0400 From: Anil Gurumurthy To: Colin King , Sudarsana Kalluru , "James E.J. Bottomley" , linux-scsi CC: linux-kernel Subject: RE: [PATCH] [SCSI] bfa: fix missing { } braces Thread-Topic: [PATCH] [SCSI] bfa: fix missing { } braces Thread-Index: AQHQzfm06l3yECNDMk2SmuQpnGxNXZ37m7TQ Date: Tue, 4 Aug 2015 09:57:11 +0000 Message-ID: <20B1A3CBD98F3845B3F5F56D8597EF5901037771@avmb2.qlogic.org> References: <1438612527-3707-1-git-send-email-colin.king@canonical.com> In-Reply-To: <1438612527-3707-1-git-send-email-colin.king@canonical.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.1.4.10] disclaimer: bypass Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8BIT MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=nai engine=5700 definitions=7882 signatures=670618 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1506180000 definitions=main-1508040165 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2152 Lines: 69 Hi Colin, We will fix the indentation in the next set of patches that we submit upstream. Thanks, Anil -----Original Message----- From: Colin King [mailto:colin.king@canonical.com] Sent: 03 August 2015 20:05 To: Anil Gurumurthy; Sudarsana Kalluru; James E.J. Bottomley; linux-scsi Cc: linux-kernel Subject: [PATCH] [SCSI] bfa: fix missing { } braces From: Colin Ian King Static analysis by smatch indicated that there was a curly braces issue: drivers/scsi/bfa/bfa_ioc.c:3668 bfa_cb_sfp_state_query() warn: curly braces intended? drivers/scsi/bfa/bfa_ioc.c:3671 bfa_cb_sfp_state_query() warn: inconsistent indenting drivers/scsi/bfa/bfa_ioc.c:3676 bfa_cb_sfp_state_query() warn: curly braces intended? The fix matches the intended logic based on the original indentation layout of the code. Signed-off-by: Colin Ian King --- drivers/scsi/bfa/bfa_ioc.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/bfa/bfa_ioc.c b/drivers/scsi/bfa/bfa_ioc.c index 315d6d6..59c3492 100644 --- a/drivers/scsi/bfa/bfa_ioc.c +++ b/drivers/scsi/bfa/bfa_ioc.c @@ -3662,7 +3662,7 @@ bfa_cb_sfp_state_query(struct bfa_sfp_s *sfp) bfa_trc(sfp, sfp->portspeed); if (sfp->media) { bfa_sfp_media_get(sfp); - if (sfp->state_query_cbfn) + if (sfp->state_query_cbfn) { sfp->state_query_cbfn(sfp->state_query_cbarg, sfp->status); sfp->media = NULL; @@ -3670,14 +3670,16 @@ bfa_cb_sfp_state_query(struct bfa_sfp_s *sfp) if (sfp->portspeed) { sfp->status = bfa_sfp_speed_valid(sfp, sfp->portspeed); - if (sfp->state_query_cbfn) + if (sfp->state_query_cbfn) { sfp->state_query_cbfn(sfp->state_query_cbarg, sfp->status); sfp->portspeed = BFA_PORT_SPEED_UNKNOWN; + } } sfp->state_query_lock = 0; sfp->state_query_cbfn = NULL; + } } /* -- 2.5.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/