From owner-cvs-all@FreeBSD.ORG Wed Sep 17 09:44:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDE5316A4B3; Wed, 17 Sep 2003 09:44:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5113C43FBD; Wed, 17 Sep 2003 09:44:03 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h8HGi3XJ098246; Wed, 17 Sep 2003 09:44:03 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h8HGi3KS098245; Wed, 17 Sep 2003 09:44:03 -0700 (PDT) (envelope-from bde) Message-Id: <200309171644.h8HGi3KS098245@repoman.freebsd.org> From: Bruce Evans Date: Wed, 17 Sep 2003 09:44:02 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sio sio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Sep 2003 16:44:03 -0000 bde 2003/09/17 09:44:02 PDT FreeBSD src repository Modified files: sys/dev/sio sio.c Log: Fixed bitrot in the probe in revs.1.127, 1.165 and 1.169. The COM_NOFIFO() and COM_ESP cases are supposed to be a subsets of the plain 16550A case, but 16650-related changes made the former fall into the latter and then both fall into general code for printing the tx fifo size. This mainly caused hard to parse boot messages like: "sio0: type 16550A fifo disabled lookalike with 1 bytes FIFO". COM_NOFIFO() on an ESP port gave a larger mess whose extent is not clear. Fixed some nearby style bugs. Revision Changes Path 1.407 +23 -23 src/sys/dev/sio/sio.c