projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c4cfb29
)
[media] drx-d: add missing braces in drxd_hard.c:DRXD_init
author
Dave Jones
<davej@redhat.com>
Thu, 5 Sep 2013 02:51:48 +0000
(23:51 -0300)
committer
Mauro Carvalho Chehab
<m.chehab@samsung.com>
Tue, 11 Mar 2014 09:56:48 +0000
(06:56 -0300)
No functional changes, but removes a duplicate check, if
!state->type_A.
Signed-off-by: Dave Jones <davej@fedoraproject.org>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/media/dvb-frontends/drxd_hard.c
patch
|
blob
|
history
diff --git
a/drivers/media/dvb-frontends/drxd_hard.c
b/drivers/media/dvb-frontends/drxd_hard.c
index
959ae36
..
5b87ece
100644
(file)
--- a/
drivers/media/dvb-frontends/drxd_hard.c
+++ b/
drivers/media/dvb-frontends/drxd_hard.c
@@
-2688,11
+2688,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)