[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20130905025148.GA12062@redhat.com>
Date: Wed, 4 Sep 2013 22:51:48 -0400
From: Dave Jones <davej@...hat.com>
To: m.chehab@...sung.com
Cc: Linux Kernel <linux-kernel@...r.kernel.org>
Subject: add missing braces in drxd_hard.c:DRXD_init
Signed-off-by: Dave Jones <davej@...oraproject.org>
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists