media: dvb-frontends: drx39xyj: Remove unnecessary ternary operators
There are a few ternary operators, the true or false judgement of which is unnecessary in C language semantics. Signed-off-by: Ruan Jinjie <ruanjinjie@huawei.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
parent
beeefd75fa
commit
e50f23b1ca
@ -4779,8 +4779,8 @@ set_frequency(struct drx_demod_instance *demod,
|
|||||||
bool image_to_select;
|
bool image_to_select;
|
||||||
s32 fm_frequency_shift = 0;
|
s32 fm_frequency_shift = 0;
|
||||||
|
|
||||||
rf_mirror = (ext_attr->mirror == DRX_MIRROR_YES) ? true : false;
|
rf_mirror = ext_attr->mirror == DRX_MIRROR_YES;
|
||||||
tuner_mirror = demod->my_common_attr->mirror_freq_spect ? false : true;
|
tuner_mirror = !demod->my_common_attr->mirror_freq_spect;
|
||||||
/*
|
/*
|
||||||
Program frequency shifter
|
Program frequency shifter
|
||||||
No need to account for mirroring on RF
|
No need to account for mirroring on RF
|
||||||
@ -8765,7 +8765,7 @@ static int qam_flip_spec(struct drx_demod_instance *demod, struct drx_channel *c
|
|||||||
goto rw_error;
|
goto rw_error;
|
||||||
}
|
}
|
||||||
ext_attr->iqm_fs_rate_ofs = iqm_fs_rate_ofs;
|
ext_attr->iqm_fs_rate_ofs = iqm_fs_rate_ofs;
|
||||||
ext_attr->pos_image = (ext_attr->pos_image) ? false : true;
|
ext_attr->pos_image = !ext_attr->pos_image;
|
||||||
|
|
||||||
/* freeze dq/fq updating */
|
/* freeze dq/fq updating */
|
||||||
rc = drxj_dap_read_reg16(dev_addr, QAM_DQ_MODE__A, &data, 0);
|
rc = drxj_dap_read_reg16(dev_addr, QAM_DQ_MODE__A, &data, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user