1
0
Fork 0

sparc64: vcc: make ktermios const

Make this const as it is not modified anywhere.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.1
Bhumika Goyal 2017-08-28 23:58:44 +05:30 committed by David S. Miller
parent 4154bb821f
commit 5bd0ea9107
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ module_param(vcc_dbg_vio, uint, 0664);
* add anything that will cause echoing or we'll go into recursive
* loop echoing chars back and forth with the console drivers.
*/
static struct ktermios vcc_tty_termios = {
static const struct ktermios vcc_tty_termios = {
.c_iflag = IGNBRK | IGNPAR,
.c_oflag = OPOST,
.c_cflag = B38400 | CS8 | CREAD | HUPCL,