Lines Matching refs:dt_value
551 u32 dt_value; in cyttsp_parse_properties() local
575 if (!device_property_read_u32(dev, "active-distance", &dt_value)) { in cyttsp_parse_properties()
576 if (dt_value > 15) { in cyttsp_parse_properties()
578 dt_value); in cyttsp_parse_properties()
582 ts->act_dist |= dt_value; in cyttsp_parse_properties()
585 if (!device_property_read_u32(dev, "active-interval-ms", &dt_value)) { in cyttsp_parse_properties()
586 if (dt_value > 255) { in cyttsp_parse_properties()
588 dt_value); in cyttsp_parse_properties()
591 ts->act_intrvl = dt_value; in cyttsp_parse_properties()
594 if (!device_property_read_u32(dev, "lowpower-interval-ms", &dt_value)) { in cyttsp_parse_properties()
595 if (dt_value > 2550) { in cyttsp_parse_properties()
597 dt_value); in cyttsp_parse_properties()
601 ts->lp_intrvl = dt_value / 10; in cyttsp_parse_properties()
604 if (!device_property_read_u32(dev, "touch-timeout-ms", &dt_value)) { in cyttsp_parse_properties()
605 if (dt_value > 2550) { in cyttsp_parse_properties()
607 dt_value); in cyttsp_parse_properties()
611 ts->tch_tmout = dt_value / 10; in cyttsp_parse_properties()