git: 06dc4eab74cd - stable/13 - ucom: s/sio/ucom/
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 10 Dec 2021 18:31:42 UTC
The branch stable/13 has been updated by mhorne: URL: https://cgit.FreeBSD.org/src/commit/?id=06dc4eab74cdb9e48d73897906b4bb9cc7b38c68 commit 06dc4eab74cdb9e48d73897906b4bb9cc7b38c68 Author: Mitchell Horne <mhorne@FreeBSD.org> AuthorDate: 2021-12-06 14:09:54 +0000 Commit: Mitchell Horne <mhorne@FreeBSD.org> CommitDate: 2021-12-10 18:31:20 +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 (cherry picked from commit e43d081f352c97c0cd1c2395f3780601cec09abf) --- 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)