Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 106690
b: refs/heads/master
c: 22b0119
h: refs/heads/master
v: v3
  • Loading branch information
Roman Zippel authored and Mauro Carvalho Chehab committed Jul 23, 2008
1 parent ff77d29 commit 405e4da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 29e031d5b09ae60d0ecdb6a1d869d591d63e893a
refs/heads/master: 22b0119e09d6e7d671535c61de27753a5e1a0a63
4 changes: 2 additions & 2 deletions trunk/drivers/media/dvb/frontends/drx397xD.c
Original file line number Diff line number Diff line change
Expand Up @@ -1026,13 +1026,13 @@ static int drx_tune(struct drx397xD_state *s,

{
/* Configure bandwidth specific factor */
ebx = div64_64(((u64) (s->f_osc) << 21) + (ebx >> 1),
ebx = div64_u64(((u64) (s->f_osc) << 21) + (ebx >> 1),
(u64)ebx) - 0x800000;
EXIT_RC(WR16(s, 0x0c50010, ebx & 0xffff));
EXIT_RC(WR16(s, 0x0c50011, ebx >> 16));

/* drx397xD oscillator calibration */
ebx = div64_64(((u64) (s->config.f_if + df_tuner) << 28) +
ebx = div64_u64(((u64) (s->config.f_if + df_tuner) << 28) +
(s->f_osc >> 1), (u64)s->f_osc);
}
ebx &= 0xfffffff;
Expand Down

0 comments on commit 405e4da

Please sign in to comment.