Lines Matching refs:reg_p
114 unsigned char reg_p[CY8CTMG110_REG_MAX]; in cy8ctmg110_touch_pos() local
117 memset(reg_p, 0, CY8CTMG110_REG_MAX); in cy8ctmg110_touch_pos()
120 if (cy8ctmg110_read_regs(tsc, reg_p, 9, CY8CTMG110_TOUCH_X1) != 0) in cy8ctmg110_touch_pos()
123 y = reg_p[2] << 8 | reg_p[3]; in cy8ctmg110_touch_pos()
124 x = reg_p[0] << 8 | reg_p[1]; in cy8ctmg110_touch_pos()
127 if (reg_p[8] == 0) { in cy8ctmg110_touch_pos()
142 unsigned char reg_p[3]; in cy8ctmg110_set_sleepmode() local
145 reg_p[0] = 0x00; in cy8ctmg110_set_sleepmode()
146 reg_p[1] = 0xff; in cy8ctmg110_set_sleepmode()
147 reg_p[2] = 5; in cy8ctmg110_set_sleepmode()
149 reg_p[0] = 0x10; in cy8ctmg110_set_sleepmode()
150 reg_p[1] = 0xff; in cy8ctmg110_set_sleepmode()
151 reg_p[2] = 0; in cy8ctmg110_set_sleepmode()
154 return cy8ctmg110_write_regs(ts, CY8CTMG110_TOUCH_WAKEUP_TIME, 3, reg_p); in cy8ctmg110_set_sleepmode()