Skip to content

Commit

Permalink
driver/rt710: レジスタ値の設定ミスを修正
Browse files Browse the repository at this point in the history
LoopThroughをOffにする際に、レジスタの設定値を「0x04」とするべき箇所で誤って「0x03」としていたので修正
  • Loading branch information
nns779 committed Jul 3, 2019
1 parent cee7062 commit 1741ce2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion driver/rt710.c
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ int rt710_set_params(struct rt710_tuner *t, u32 freq, u32 symbol_rate, u32 rollo
if (t->config.loop_through)
regs[0x01] &= 0xfb;
else
regs[0x01] |= 0x03;
regs[0x01] |= 0x04;

if (t->config.clock_out)
regs[0x03] &= 0xef;
Expand Down

0 comments on commit 1741ce2

Please sign in to comment.