On Thu, Sep 12, 2019 at 10:40 AM Rodolfo Giometti <giometti@xxxxxxxxxxxx> wrote: > diff --git a/include/uapi/asm-generic/termbits.h b/include/uapi/asm-generic/termbits.h > index 2fbaf9ae89dd..ead5eaebdd3b 100644 > --- a/include/uapi/asm-generic/termbits.h > +++ b/include/uapi/asm-generic/termbits.h > @@ -141,6 +141,8 @@ struct ktermios { > #define HUPCL 0002000 > #define CLOCAL 0004000 > #define CBAUDEX 0010000 > +#define PARMD 040000000 > +#define SENDA 0100000000 > #define BOTHER 0010000 > #define B57600 0010001 > #define B115200 0010002 If you add these to the asm-generic version of this file, please also add them to the architecture specific ones that don't use asm-generic/termbits.h: alpha, ia64, mips, parisc, powerpc, sparc, and xtensa. Please pick values that are the same everywhere and do not clash with any of the existing bits of any of the above (this is probably the case, but I have not checked) Arnd