Lines Matching refs:utmp
30 unsigned int utmp; in cxd2820r_set_frontend_t2() local
122 utmp = DIV_ROUND_CLOSEST_ULL((u64)if_frequency * 0x1000000, CXD2820R_CLK); in cxd2820r_set_frontend_t2()
123 buf[0] = (utmp >> 16) & 0xff; in cxd2820r_set_frontend_t2()
124 buf[1] = (utmp >> 8) & 0xff; in cxd2820r_set_frontend_t2()
125 buf[2] = (utmp >> 0) & 0xff; in cxd2820r_set_frontend_t2()
175 unsigned int utmp; in cxd2820r_get_frontend_t2() local
269 ret = regmap_read(priv->regmap[0], 0x20b5, &utmp); in cxd2820r_get_frontend_t2()
273 switch ((utmp >> 4) & 0x01) { in cxd2820r_get_frontend_t2()
294 unsigned int utmp, utmp1, utmp2; in cxd2820r_read_status_t2() local
326 utmp = buf[0] << 8 | buf[1] << 0; in cxd2820r_read_status_t2()
327 utmp = ~utmp & 0x0fff; in cxd2820r_read_status_t2()
329 strength = utmp << 4 | utmp >> 8; in cxd2820r_read_status_t2()
347 utmp = buf[0] << 8 | buf[1] << 0; in cxd2820r_read_status_t2()
348 utmp = utmp & 0x0fff; in cxd2820r_read_status_t2()
350 if (utmp) in cxd2820r_read_status_t2()
351 cnr = div_u64((u64)(intlog10(utmp) in cxd2820r_read_status_t2()