Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 294845
b: refs/heads/master
c: 2212501
h: refs/heads/master
i:
  294843: 509786b
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Jan 21, 2012
1 parent d8a2f46 commit 3448868
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d20a7f7277785e6f7fbe02eb469f7a99a9f058a4
refs/heads/master: 2212501ffad7fee1c2fcf9d6d55a24b489da18ad
6 changes: 5 additions & 1 deletion trunk/drivers/media/dvb/dvb-usb/az6007.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ static int drxk_gate_ctrl(struct dvb_frontend *fe, int enable)
struct az6007_device_state *st;
int status;

info("%s", __func__);
info("%s: %s", __func__, enable? "enable" : "disable" );

if (!adap)
return -EINVAL;
Expand All @@ -64,10 +64,14 @@ static int drxk_gate_ctrl(struct dvb_frontend *fe, int enable)


if (enable) {
#if 0
down(&st->pll_mutex);
#endif
status = st->gate_ctrl(fe, 1);
} else {
#if 0
status = st->gate_ctrl(fe, 0);
#endif
up(&st->pll_mutex);
}
return status;
Expand Down

0 comments on commit 3448868

Please sign in to comment.