Searched refs:PARODD (Results 1 - 25 of 103) sorted by relevance

12345

/linux-master/drivers/tty/serdev/
H A Dserdev-ttyport.c202 ktermios.c_cflag &= ~(PARENB | PARODD | CMSPAR);
206 ktermios.c_cflag |= PARODD;
211 if ((tty->termios.c_cflag & (PARENB | PARODD | CMSPAR)) !=
212 (ktermios.c_cflag & (PARENB | PARODD | CMSPAR)))
/linux-master/arch/m68k/atari/
H A Ddebug.c169 int parity = (cflag & PARENB) ? ((cflag & PARODD) ? 0x04 : 0x06) : 0;
245 SCC_WRITE(4, (cflag & PARENB) ? ((cflag & PARODD) ? 0x01 : 0x03)
268 int parity = (cflag & PARENB) ? ((cflag & PARODD) ? 0x0c : 0x08) : 0x04;
/linux-master/arch/powerpc/include/uapi/asm/
H A Dtermbits.h129 #define PARODD 0x00002000 macro
/linux-master/drivers/usb/serial/
H A Dkl5kusb105.c464 if ((cflag & (PARENB|PARODD)) != (old_cflag & (PARENB|PARODD))
467 tty->termios.c_cflag &= ~(PARENB|PARODD|CSTOPB);
H A Dbelkin_sa.c349 if ((cflag ^ old_cflag) & (PARENB | PARODD)) {
351 urb_value = (cflag & PARODD) ? BELKIN_SA_PARITY_ODD
H A Dconsole.c98 cflag |= PARODD;
H A Dwhiteheat.c632 if (cflag & PARODD)
637 if (cflag & PARODD)
H A Diuu_phoenix.c885 const u32 supported_mask = CMSPAR|PARENB|PARODD;
903 if (cflag & PARODD)
910 } else if (cflag & PARODD)
H A Ddigi_acceleport.c722 if ((cflag & (PARENB | PARODD)) != (old_cflag & (PARENB | PARODD))) {
724 if (cflag & PARODD)
H A Dspcp8x5.c369 buf[1] |= (cflag & PARODD) ?
H A Dssu100.c228 if (cflag & PARODD)
H A Dkobil_sct.c510 if (c_cflag & PARODD)
/linux-master/drivers/tty/serial/
H A Dsuncore.c157 case 'o': cflag |= (PARENB | PARODD); break;
H A Dowl-uart.c345 if (termios->c_cflag & PARODD)
349 } else if (termios->c_cflag & PARODD)
H A Dmcf.c225 if (termios->c_cflag & PARODD)
230 if (termios->c_cflag & PARODD)
H A Duartlite.c327 termios->c_cflag &= ~(CSTOPB | PARENB | PARODD | CSIZE);
328 termios->c_cflag |= pdata->cflags & (PARENB | PARODD | CSIZE);
817 pdata->cflags |= PARODD;
H A D21285.c268 if (!(termios->c_cflag & PARODD))
H A Dapbuart.c223 if ((termios->c_cflag & PARODD))
/linux-master/arch/sparc/include/uapi/asm/
H A Dtermbits.h133 #define PARODD 0x00000200 macro
/linux-master/arch/alpha/include/uapi/asm/
H A Dtermbits.h139 #define PARODD 0x00002000 macro
/linux-master/arch/parisc/include/uapi/asm/
H A Dtermbits.h104 #define PARODD 0x00000200 macro
/linux-master/arch/mips/include/uapi/asm/
H A Dtermbits.h128 #define PARODD 0x00000200 /* Odd parity instead of even */ macro
/linux-master/include/uapi/asm-generic/
H A Dtermbits.h104 #define PARODD 0x00000200 macro
/linux-master/drivers/accessibility/speakup/
H A Dserialio.c72 if (!(cflag & PARODD))
/linux-master/net/bluetooth/rfcomm/
H A Dtty.c881 ((old->c_cflag & PARODD) != (new->c_cflag & PARODD))) {
888 if (new->c_cflag & PARODD) {

Completed in 358 milliseconds

12345