Lines Matching refs:utmp
17 unsigned int utmp; in cxd2820r_set_frontend_t() local
92 utmp = DIV_ROUND_CLOSEST_ULL((u64)if_frequency * 0x1000000, CXD2820R_CLK); in cxd2820r_set_frontend_t()
93 buf[0] = (utmp >> 16) & 0xff; in cxd2820r_set_frontend_t()
94 buf[1] = (utmp >> 8) & 0xff; in cxd2820r_set_frontend_t()
95 buf[2] = (utmp >> 0) & 0xff; in cxd2820r_set_frontend_t()
132 unsigned int utmp; in cxd2820r_get_frontend_t() local
228 ret = regmap_read(priv->regmap[0], 0x07c6, &utmp); in cxd2820r_get_frontend_t()
232 switch ((utmp >> 0) & 0x01) { in cxd2820r_get_frontend_t()
253 unsigned int utmp, utmp1, utmp2; in cxd2820r_read_status_t() local
288 utmp = buf[0] << 8 | buf[1] << 0; in cxd2820r_read_status_t()
289 utmp = ~utmp & 0x0fff; in cxd2820r_read_status_t()
291 strength = utmp << 4 | utmp >> 8; in cxd2820r_read_status_t()
309 utmp = buf[0] << 8 | buf[1] << 0; in cxd2820r_read_status_t()
310 if (utmp) in cxd2820r_read_status_t()
311 cnr = div_u64((u64)(intlog10(utmp) in cxd2820r_read_status_t()
312 - intlog10(32000 - utmp) + 55532585) in cxd2820r_read_status_t()