Lines Matching refs:utmp
17 unsigned int utmp; in cxd2820r_set_frontend_t2() local
109 utmp = DIV_ROUND_CLOSEST_ULL((u64)if_frequency * 0x1000000, CXD2820R_CLK); in cxd2820r_set_frontend_t2()
110 buf[0] = (utmp >> 16) & 0xff; in cxd2820r_set_frontend_t2()
111 buf[1] = (utmp >> 8) & 0xff; in cxd2820r_set_frontend_t2()
112 buf[2] = (utmp >> 0) & 0xff; in cxd2820r_set_frontend_t2()
162 unsigned int utmp; in cxd2820r_get_frontend_t2() local
256 ret = regmap_read(priv->regmap[0], 0x20b5, &utmp); in cxd2820r_get_frontend_t2()
260 switch ((utmp >> 4) & 0x01) { in cxd2820r_get_frontend_t2()
281 unsigned int utmp, utmp1, utmp2; in cxd2820r_read_status_t2() local
313 utmp = buf[0] << 8 | buf[1] << 0; in cxd2820r_read_status_t2()
314 utmp = ~utmp & 0x0fff; in cxd2820r_read_status_t2()
316 strength = utmp << 4 | utmp >> 8; in cxd2820r_read_status_t2()
334 utmp = buf[0] << 8 | buf[1] << 0; in cxd2820r_read_status_t2()
335 utmp = utmp & 0x0fff; in cxd2820r_read_status_t2()
337 if (utmp) in cxd2820r_read_status_t2()
338 cnr = div_u64((u64)(intlog10(utmp) in cxd2820r_read_status_t2()