media: cxd2820r: use DIV_ROUND_CLOSEST_ULL()
[cascardo/linux.git] / drivers / media / dvb-frontends / cxd2820r_c.c
index 149fdca..72b0e2d 100644 (file)
@@ -79,7 +79,7 @@ int cxd2820r_set_frontend_c(struct dvb_frontend *fe)
 
        num = if_freq / 1000; /* Hz => kHz */
        num *= 0x4000;
-       if_ctl = 0x4000 - cxd2820r_div_u64_round_closest(num, 41000);
+       if_ctl = 0x4000 - DIV_ROUND_CLOSEST_ULL(num, 41000);
        buf[0] = (if_ctl >> 8) & 0x3f;
        buf[1] = (if_ctl >> 0) & 0xff;