Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Dec 2002 21:19:54 -0800 (PST)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 22907 for review
Message-ID:  <200212300519.gBU5JsAs014329@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=22907

Change 22907 by marcel@marcel_nfs on 2002/12/29 21:19:07

	Respect hint.sio.#.baud, just like i386.

Affected files ...

.. //depot/projects/ia64/sys/ia64/ia64/sio_machdep.c#6 edit

Differences ...

==== //depot/projects/ia64/sys/ia64/ia64/sio_machdep.c#6 (text+ko) ====

@@ -138,7 +138,9 @@
 			continue;
 		cd->bsh = ivar;
 		cd->bst = IA64_BUS_SPACE_IO;
-		cd->baud = 0;	/* Keep current baud. */
+		if (resource_int_value("sio", i, "baud", &ivar) != 0)
+			ivar = 0;
+		cd->baud = ivar;
 		cd->databits = 8;
 		cd->stopbits = 1;
 		cd->parity = 0;

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200212300519.gBU5JsAs014329>