Browse Source

mips,powerpc: fix TIOCSER_TEMT in termios.h

use the same token to define TIOCSER_TEMT as is used in ioctl.h
so when both headers are included there are no redefinition warnings
during musl build.
master
Szabolcs Nagy 8 years ago
committed by Rich Felker
parent
commit
9eda4dc69c
  1. 2
      arch/mips/bits/termios.h
  2. 2
      arch/mips64/bits/termios.h
  3. 2
      arch/mipsn32/bits/termios.h
  4. 2
      arch/powerpc/bits/termios.h
  5. 2
      arch/powerpc64/bits/termios.h

2
arch/mips/bits/termios.h

@ -163,5 +163,5 @@ struct termios {
#define EXTPROC 0200000
#define XTABS 0014000
#define TIOCSER_TEMT 1
#define TIOCSER_TEMT 0x01
#endif

2
arch/mips64/bits/termios.h

@ -163,5 +163,5 @@ struct termios {
#define EXTPROC 0200000
#define XTABS 0014000
#define TIOCSER_TEMT 1
#define TIOCSER_TEMT 0x01
#endif

2
arch/mipsn32/bits/termios.h

@ -163,5 +163,5 @@ struct termios {
#define EXTPROC 0200000
#define XTABS 0014000
#define TIOCSER_TEMT 1
#define TIOCSER_TEMT 0x01
#endif

2
arch/powerpc/bits/termios.h

@ -165,5 +165,5 @@ struct termios {
#define EXTPROC 0x10000000
#define XTABS 00006000
#define TIOCSER_TEMT 1
#define TIOCSER_TEMT 0x01
#endif

2
arch/powerpc64/bits/termios.h

@ -165,5 +165,5 @@ struct termios {
#define EXTPROC 0x10000000
#define XTABS 00006000
#define TIOCSER_TEMT 1
#define TIOCSER_TEMT 0x01
#endif

Loading…
Cancel
Save