aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitchell Horne <mhorne@FreeBSD.org>2021-12-06 14:09:54 +0000
committerMitchell Horne <mhorne@FreeBSD.org>2021-12-06 14:10:27 +0000
commite43d081f352c97c0cd1c2395f3780601cec09abf (patch)
treedd7f460f2d320138a5a8e5e6160520df69a2c0b4
parent998959cd613d6162cec7b0c7a05183127c724471 (diff)
downloadsrc-e43d081f352c97c0cd1c2395f3780601cec09abf.tar.gz
src-e43d081f352c97c0cd1c2395f3780601cec09abf.zip
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
-rw-r--r--sys/dev/usb/serial/usb_serial.c2
1 files changed, 1 insertions, 1 deletions
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)