diff options
| author | Alexander Kabaev <kan@FreeBSD.org> | 2003-01-02 02:46:13 +0000 |
|---|---|---|
| committer | Alexander Kabaev <kan@FreeBSD.org> | 2003-01-02 02:46:13 +0000 |
| commit | 851d38844362d449b3ecc0deec66a6ac9bfb4350 (patch) | |
| tree | 374c8b9c5ba5a22d8776c7cca4ba95d6f21d3ffc | |
| parent | 64fe778489391206c2d5504a23a04e315e84219c (diff) | |
Notes
| -rw-r--r-- | sys/dev/usb/ubsa.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/ubsa.c b/sys/dev/usb/ubsa.c index f78f3e0d278b..60ebd4ca95ba 100644 --- a/sys/dev/usb/ubsa.c +++ b/sys/dev/usb/ubsa.c @@ -617,9 +617,10 @@ ubsa_param(void *addr, int portno, struct termios *ti) { struct ubsa_softc *sc; + sc = addr; + DPRINTF(("ubsa_param: sc = %p\n", sc)); - sc = addr; ubsa_baudrate(sc, ti->c_ospeed); ubsa_parity(sc, ti->c_cflag); ubsa_databits(sc, ti->c_cflag); |
