Commit 0405f55b57271e25fe9dfdbdacb015e3ca672653
1 parent
f9d6b6b0
termios structure definition fix by Stuart Anderson.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2705 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
2 changed files
with
2 additions
and
2 deletions
linux-user/ppc/termbits.h
@@ -7,8 +7,8 @@ struct target_termios { | @@ -7,8 +7,8 @@ struct target_termios { | ||
7 | unsigned int c_oflag; /* output mode flags */ | 7 | unsigned int c_oflag; /* output mode flags */ |
8 | unsigned int c_cflag; /* control mode flags */ | 8 | unsigned int c_cflag; /* control mode flags */ |
9 | unsigned int c_lflag; /* local mode flags */ | 9 | unsigned int c_lflag; /* local mode flags */ |
10 | - unsigned char c_line; /* line discipline */ | ||
11 | unsigned char c_cc[TARGET_NCCS]; /* control characters */ | 10 | unsigned char c_cc[TARGET_NCCS]; /* control characters */ |
11 | + unsigned char c_line; /* line discipline */ | ||
12 | unsigned int c_ispeed; /* input speed */ | 12 | unsigned int c_ispeed; /* input speed */ |
13 | unsigned int c_ospeed; /* output speed */ | 13 | unsigned int c_ospeed; /* output speed */ |
14 | }; | 14 | }; |
linux-user/ppc64/termbits.h
@@ -7,8 +7,8 @@ struct target_termios { | @@ -7,8 +7,8 @@ struct target_termios { | ||
7 | unsigned int c_oflag; /* output mode flags */ | 7 | unsigned int c_oflag; /* output mode flags */ |
8 | unsigned int c_cflag; /* control mode flags */ | 8 | unsigned int c_cflag; /* control mode flags */ |
9 | unsigned int c_lflag; /* local mode flags */ | 9 | unsigned int c_lflag; /* local mode flags */ |
10 | - unsigned char c_line; /* line discipline */ | ||
11 | unsigned char c_cc[TARGET_NCCS]; /* control characters */ | 10 | unsigned char c_cc[TARGET_NCCS]; /* control characters */ |
11 | + unsigned char c_line; /* line discipline */ | ||
12 | unsigned int c_ispeed; /* input speed */ | 12 | unsigned int c_ispeed; /* input speed */ |
13 | unsigned int c_ospeed; /* output speed */ | 13 | unsigned int c_ospeed; /* output speed */ |
14 | }; | 14 | }; |