diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2019-07-13 16:04:19 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-07-13 16:04:19 -0700 |
commit | ec9249752465b87b5b26d03f476eebaf872ebd12 (patch) | |
tree | 4ec03e3a9e443654315f08be35e31eabfd6f39c0 /drivers | |
parent | d12109291ccbef7e879cc0d0733f31685cd80854 (diff) | |
parent | 61daf52c4ddd433924687850fa04ed85c0d806dd (diff) | |
download | linux-ec9249752465b87b5b26d03f476eebaf872ebd12.tar.bz2 |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc
Pull sparc updates from David Miller:
"Just a few small changes:
- Fix console naming inconsistency with hypervisor consoles, from
John Paul Adrian Glaubitz
- Fix userland compilation due to use of u_int, from Masahiro Yamada"
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc:
sparc64: Add missing newline at end of file
sparc: fix unknown type name u_int in uapi header
sparc: configs: Remove useless UEVENT_HELPER_PATH
sparc: Remove redundant copy of the LGPL-2.0
sunhv: Fix device naming inconsistency between sunhv_console and sunhv_reg
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/tty/serial/sunhv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/sunhv.c b/drivers/tty/serial/sunhv.c index 63e34d868de8..f8503f8fc44e 100644 --- a/drivers/tty/serial/sunhv.c +++ b/drivers/tty/serial/sunhv.c @@ -397,7 +397,7 @@ static const struct uart_ops sunhv_pops = { static struct uart_driver sunhv_reg = { .owner = THIS_MODULE, .driver_name = "sunhv", - .dev_name = "ttyS", + .dev_name = "ttyHV", .major = TTY_MAJOR, }; |