diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-04-04 21:43:49 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-04-04 21:43:49 -0400 |
commit | 9abf8acea297b4c65f5fa3206e2b8e468e730e84 (patch) | |
tree | 03e231d7e785e4cf3ae8849b523cebd1660f57fc /drivers/tty/vt | |
parent | ac9053d2dcb9e8c3fa35ce458dfca8fddc141680 (diff) | |
parent | 4f794097797f551917b68797e39f25fcb17d5b3a (diff) |
Merge tag 'tty-4.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty
Pull tty/serial driver updates from Greg KH:
"Here is the big set of tty and serial driver patches for 4.17-rc1
Not all that big really, most are just small fixes and additions to
existing drivers. There's a bunch of work on the imx serial driver
recently for some reason, and a new embedded serial driver added as
well.
Full details are in the shortlog.
All of these have been in the linux-next tree for a while with no
reported issues"
* tag 'tty-4.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty: (66 commits)
serial: expose buf_overrun count through proc interface
serial: mvebu-uart: fix tx lost characters
tty: serial: msm_geni_serial: Fix return value check in qcom_geni_serial_probe()
tty: serial: msm_geni_serial: Add serial driver support for GENI based QUP
8250-men-mcb: add support for 16z025 and 16z057
powerpc: Mark the variable earlycon_acpi_spcr_enable maybe_unused
serial: stm32: fix initialization of RS485 mode
ARM: dts: STi: Remove "console=ttyASN" from bootargs for STi boards
vt: change SGR 21 to follow the standards
serdev: Fix typo in serdev_device_alloc
ARM: dts: STi: Fix aliases property name for STi boards
tty: st-asc: Update tty alias
serial: stm32: add support for RS485 hardware control mode
dt-bindings: serial: stm32: add RS485 optional properties
selftests: add devpts selftests
devpts: comment devpts_mntget()
devpts: resolve devpts bind-mounts
devpts: hoist out check for DEVPTS_SUPER_MAGIC
serial: 8250: Add Nuvoton NPCM UART
serial: mxs-auart: disable clks of Alphascale ASM9260
...
Diffstat (limited to 'drivers/tty/vt')
-rw-r--r-- | drivers/tty/vt/vt.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c index b4e57c5a8bba..f97251f39c26 100644 --- a/drivers/tty/vt/vt.c +++ b/drivers/tty/vt/vt.c | |||
@@ -1354,6 +1354,11 @@ static void csi_m(struct vc_data *vc) | |||
1354 | case 3: | 1354 | case 3: |
1355 | vc->vc_italic = 1; | 1355 | vc->vc_italic = 1; |
1356 | break; | 1356 | break; |
1357 | case 21: | ||
1358 | /* | ||
1359 | * No console drivers support double underline, so | ||
1360 | * convert it to a single underline. | ||
1361 | */ | ||
1357 | case 4: | 1362 | case 4: |
1358 | vc->vc_underline = 1; | 1363 | vc->vc_underline = 1; |
1359 | break; | 1364 | break; |
@@ -1389,7 +1394,6 @@ static void csi_m(struct vc_data *vc) | |||
1389 | vc->vc_disp_ctrl = 1; | 1394 | vc->vc_disp_ctrl = 1; |
1390 | vc->vc_toggle_meta = 1; | 1395 | vc->vc_toggle_meta = 1; |
1391 | break; | 1396 | break; |
1392 | case 21: | ||
1393 | case 22: | 1397 | case 22: |
1394 | vc->vc_intensity = 1; | 1398 | vc->vc_intensity = 1; |
1395 | break; | 1399 | break; |