Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935517Ab3IECwA (ORCPT ); Wed, 4 Sep 2013 22:52:00 -0400 Received: from mx1.redhat.com ([209.132.183.28]:19266 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1762415Ab3IECv7 (ORCPT ); Wed, 4 Sep 2013 22:51:59 -0400 Date: Wed, 4 Sep 2013 22:51:48 -0400 From: Dave Jones To: m.chehab@samsung.com Cc: Linux Kernel Subject: add missing braces in drxd_hard.c:DRXD_init Message-ID: <20130905025148.GA12062@redhat.com> Mail-Followup-To: Dave Jones , m.chehab@samsung.com, Linux Kernel MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 882 Lines: 25 Signed-off-by: Dave Jones diff --git a/drivers/media/dvb-frontends/drxd_hard.c b/drivers/media/dvb-frontends/drxd_hard.c index 9a213479..a1a3421 100644 --- a/drivers/media/dvb-frontends/drxd_hard.c +++ b/drivers/media/dvb-frontends/drxd_hard.c @@ -2692,11 +2692,11 @@ static int DRXD_init(struct drxd_state *state, const u8 *fw, u32 fw_size) status = EnableAndResetMB(state); if (status < 0) break; - if (state->type_A) + if (state->type_A) { status = ResetCEFR(state); if (status < 0) break; - + } if (fw) { status = DownloadMicrocode(state, fw, fw_size); if (status < 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/