Skip to content

Commit

Permalink
[PATCH] Add CMSPAR to termbits.h for powerpc and alpha
Browse files Browse the repository at this point in the history
Some driver wants to use CMSPAR, but it was missing on alpha and powerpc.
This adds it, with the same value as every other architecture uses.

(akpm: fixes the build of an upcoming gregkh USB patch)

Signed-off-by: Paul Mackerras <paulus@samba.org>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Paul Mackerras authored and Linus Torvalds committed May 26, 2006
1 parent c71d488 commit 6bf08cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/asm-alpha/termbits.h
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ struct termios {
#define HUPCL 00040000

#define CLOCAL 00100000
#define CMSPAR 010000000000 /* mark or space (stick) parity */
#define CRTSCTS 020000000000 /* flow control */

/* c_lflag bits */
Expand Down
1 change: 1 addition & 0 deletions include/asm-powerpc/termbits.h
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ struct termios {
#define HUPCL 00040000

#define CLOCAL 00100000
#define CMSPAR 010000000000 /* mark or space (stick) parity */
#define CRTSCTS 020000000000 /* flow control */

/* c_lflag bits */
Expand Down

0 comments on commit 6bf08cb

Please sign in to comment.