git: e43d081f352c - main - ucom: s/sio/ucom/
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 06 Dec 2021 14:10:49 UTC
The branch main has been updated by mhorne: URL: https://cgit.FreeBSD.org/src/commit/?id=e43d081f352c97c0cd1c2395f3780601cec09abf commit e43d081f352c97c0cd1c2395f3780601cec09abf Author: Mitchell Horne <mhorne@FreeBSD.org> AuthorDate: 2021-12-06 14:09:54 +0000 Commit: Mitchell Horne <mhorne@FreeBSD.org> CommitDate: 2021-12-06 14:10:27 +0000 ucom: s/sio/ucom/ Seems like a copy-paste error, or at least this made more sense when the sio(4) driver still existed. This modifies the debug port name displayed at boot, but otherwise has no functional change. Reviewed by: hselasky MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D33278 --- sys/dev/usb/serial/usb_serial.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/usb/serial/usb_serial.c b/sys/dev/usb/serial/usb_serial.c index cd3cede78124..89e568eb13c0 100644 --- a/sys/dev/usb/serial/usb_serial.c +++ b/sys/dev/usb/serial/usb_serial.c @@ -1752,7 +1752,7 @@ static gdb_term_f ucom_gdbterm; static gdb_getc_f ucom_gdbgetc; static gdb_putc_f ucom_gdbputc; -GDB_DBGPORT(sio, ucom_gdbprobe, ucom_gdbinit, ucom_gdbterm, ucom_gdbgetc, ucom_gdbputc); +GDB_DBGPORT(ucom, ucom_gdbprobe, ucom_gdbinit, ucom_gdbterm, ucom_gdbgetc, ucom_gdbputc); static int ucom_gdbprobe(void)