mirror of
https://github.com/rtlsdrblog/rtl-sdr-blog.git
synced 2024-12-26 19:08:29 +01:00
tuner_e4k: use empty entry instead of offset for if_stage_gain_regs[]
Signed-off-by: Steve Markgraf <steve@steve-m.de>
This commit is contained in:
parent
8dda694101
commit
f7d9e578a0
@ -617,6 +617,7 @@ static const uint8_t if_stage_gain_len[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const struct reg_field if_stage_gain_regs[] = {
|
static const struct reg_field if_stage_gain_regs[] = {
|
||||||
|
{ 0, 0, 0 },
|
||||||
{ E4K_REG_GAIN3, 0, 1 },
|
{ E4K_REG_GAIN3, 0, 1 },
|
||||||
{ E4K_REG_GAIN3, 1, 2 },
|
{ E4K_REG_GAIN3, 1, 2 },
|
||||||
{ E4K_REG_GAIN3, 3, 2 },
|
{ E4K_REG_GAIN3, 3, 2 },
|
||||||
@ -724,7 +725,7 @@ int e4k_if_gain_set(struct e4k_state *e4k, uint8_t stage, int8_t value)
|
|||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
/* compute the bit-mask for the given gain field */
|
/* compute the bit-mask for the given gain field */
|
||||||
field = &if_stage_gain_regs[stage-1];
|
field = &if_stage_gain_regs[stage];
|
||||||
mask = width2mask[field->width] << field->shift;
|
mask = width2mask[field->width] << field->shift;
|
||||||
|
|
||||||
return e4k_reg_set_mask(e4k, field->reg, mask, rc << field->shift);
|
return e4k_reg_set_mask(e4k, field->reg, mask, rc << field->shift);
|
||||||
|
Loading…
Reference in New Issue
Block a user