Lines Matching refs:dt_value
552 u32 dt_value; in cyttsp_parse_properties() local
576 if (!device_property_read_u32(dev, "active-distance", &dt_value)) { in cyttsp_parse_properties()
577 if (dt_value > 15) { in cyttsp_parse_properties()
579 dt_value); in cyttsp_parse_properties()
583 ts->act_dist |= dt_value; in cyttsp_parse_properties()
586 if (!device_property_read_u32(dev, "active-interval-ms", &dt_value)) { in cyttsp_parse_properties()
587 if (dt_value > 255) { in cyttsp_parse_properties()
589 dt_value); in cyttsp_parse_properties()
592 ts->act_intrvl = dt_value; in cyttsp_parse_properties()
595 if (!device_property_read_u32(dev, "lowpower-interval-ms", &dt_value)) { in cyttsp_parse_properties()
596 if (dt_value > 2550) { in cyttsp_parse_properties()
598 dt_value); in cyttsp_parse_properties()
602 ts->lp_intrvl = dt_value / 10; in cyttsp_parse_properties()
605 if (!device_property_read_u32(dev, "touch-timeout-ms", &dt_value)) { in cyttsp_parse_properties()
606 if (dt_value > 2550) { in cyttsp_parse_properties()
608 dt_value); in cyttsp_parse_properties()
612 ts->tch_tmout = dt_value / 10; in cyttsp_parse_properties()