Lines Matching full:col
68 int col = 0; in omap_kp_scan_keypad() local
75 for (col = 0; col < omap_kp->cols; col++) { in omap_kp_scan_keypad()
76 omap_writew(~(1 << col) & 0xff, in omap_kp_scan_keypad()
81 state[col] = ~omap_readw(OMAP1_MPUIO_BASE + in omap_kp_scan_keypad()
94 int col, row; in omap_kp_tasklet() local
100 for (col = 0; col < omap_kp_data->cols; col++) { in omap_kp_tasklet()
101 changed = new_state[col] ^ keypad_state[col]; in omap_kp_tasklet()
102 key_down |= new_state[col]; in omap_kp_tasklet()
111 printk(KERN_INFO "omap-keypad: key %d-%d %s\n", col, in omap_kp_tasklet()
112 row, (new_state[col] & (1 << row)) ? in omap_kp_tasklet()
115 key = keycodes[MATRIX_SCAN_CODE(row, col, row_shift)]; in omap_kp_tasklet()
123 new_state[col] & (1 << row)); in omap_kp_tasklet()