mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
media: tuners/qm1d1c0042: Use DIV_ROUND_CLOSEST directly to make it readable
The kernel.h macro DIV_ROUND_CLOSEST performs the computation (x + d/2)/d but is perhaps more readable. Signed-off-by: Zhong Jiang <zhongjiang@huawei.com> Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
727fe909af
commit
0f123f820a
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ static int qm1d1c0042_set_params(struct dvb_frontend *fe)
|
|||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
a = (freq + state->cfg.xtal_freq / 2) / state->cfg.xtal_freq;
|
||||
a = DIV_ROUND_CLOSEST(freq, state->cfg.xtal_freq);
|
||||
|
||||
state->regs[0x06] &= 0x40;
|
||||
state->regs[0x06] |= (a - 12) / 4;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue