From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/9881 Path: news.gmane.org!not-for-mail From: Szabolcs Nagy Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH 16/16] fix struct termios in mips termios.h Date: Sun, 10 Apr 2016 14:16:24 +0200 Message-ID: References: Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1460290603 26727 80.91.229.3 (10 Apr 2016 12:16:43 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 10 Apr 2016 12:16:43 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-9894-gllmg-musl=m.gmane.org@lists.openwall.com Sun Apr 10 14:16:43 2016 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1apEIE-0001Oc-N3 for gllmg-musl@m.gmane.org; Sun, 10 Apr 2016 14:16:42 +0200 Original-Received: (qmail 30495 invoked by uid 550); 10 Apr 2016 12:16:40 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 30463 invoked from network); 10 Apr 2016 12:16:36 -0000 Mail-Followup-To: musl@lists.openwall.com Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) Xref: news.gmane.org gmane.linux.lib.musl.general:9881 Archived-At: mips termios struct has no ispeed and ospeed members in glibc, mips64 is already consistent with glibc. this is an abi change. --- arch/mips/bits/termios.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/arch/mips/bits/termios.h b/arch/mips/bits/termios.h index 29b4b22..d97df8c 100644 --- a/arch/mips/bits/termios.h +++ b/arch/mips/bits/termios.h @@ -1,13 +1,10 @@ -struct termios -{ +struct termios { tcflag_t c_iflag; tcflag_t c_oflag; tcflag_t c_cflag; tcflag_t c_lflag; cc_t c_line; cc_t c_cc[NCCS]; - speed_t __c_ispeed; - speed_t __c_ospeed; }; #define VINTR 0 -- 2.7.2