Home
last modified time | relevance | path

Searched refs:SERIO_PARITY (Results 1 – 17 of 17) sorted by relevance

/kernel/linux/linux-5.10/drivers/input/serio/
Dpcips2.c75 flag = (status & PS2_STAT_PARITY) ? 0 : SERIO_PARITY; in pcips2_interrupt()
78 flag ^= SERIO_PARITY; in pcips2_interrupt()
Dsa1111ps2.c72 (status & PS2STAT_RXP ? 0 : SERIO_PARITY); in ps2_rxint()
77 flag ^= SERIO_PARITY; in ps2_rxint()
Dams_delta_serio.c59 return SERIO_PARITY; in check_data()
Dapbps2.c67 rxflags = (status & APBPS2_STATUS_PE) ? SERIO_PARITY : 0; in apbps2_isr()
Darc_ps2.c64 flag |= SERIO_PARITY; in arc_ps2_check_rx()
Di8042.c577 case 0xff: dfl = SERIO_PARITY; data = 0xfe; break; in i8042_interrupt()
586 dfl = ((str & I8042_STR_PARITY) ? SERIO_PARITY : 0) | in i8042_interrupt()
598 dfl & SERIO_PARITY ? ", bad parity" : "", in i8042_interrupt()
Dxilinx_ps2.c120 drvdata->flags |= SERIO_PARITY; in xps2_interrupt()
Dserport.c137 ch_flags = SERIO_PARITY; in serport_ldisc_receive()
Dsun4i-ps2.c113 rxflags |= (intr_status & PS2_LSTS_PARERR) ? SERIO_PARITY : 0; in sun4i_ps2_interrupt()
Dps2-gpio.c176 rxflags |= SERIO_PARITY; in ps2_gpio_irq_rx()
Dgscps2.c266 ((status & GSC_STAT_PERR) ? SERIO_PARITY : 0 ); in gscps2_interrupt()
/kernel/linux/linux-5.10/include/uapi/linux/
Dserio.h22 #define SERIO_PARITY _BITUL(1) macro
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/
Dserio.h25 #define SERIO_PARITY _BITUL(1) macro
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/
Dserio.h12 #define SERIO_PARITY _BITUL(1) macro
/kernel/linux/linux-5.10/drivers/input/rmi4/
Drmi_f03.c293 serio_flags |= SERIO_PARITY; in rmi_f03_attention()
299 serio_flags & SERIO_PARITY ? 'Y' : 'N'); in rmi_f03_attention()
/kernel/linux/linux-5.10/drivers/input/mouse/
Dpsmouse-base.c347 ((flags & SERIO_PARITY) && in psmouse_interrupt()
354 flags & SERIO_PARITY ? " bad parity" : ""); in psmouse_interrupt()
/kernel/linux/linux-5.10/drivers/input/keyboard/
Datkbd.c422 …if ((flags & (SERIO_FRAME | SERIO_PARITY)) && (~flags & SERIO_TIMEOUT) && !atkbd->resend && atkbd-… in atkbd_interrupt()