From owner-freebsd-arch@FreeBSD.ORG Mon Sep 29 15:54:28 2014 Return-Path: Delivered-To: freebsd-arch@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 54C5DACE for ; Mon, 29 Sep 2014 15:54:28 +0000 (UTC) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2EB74D7F for ; Mon, 29 Sep 2014 15:54:28 +0000 (UTC) Received: from ralph.baldwin.cx (pool-173-70-85-31.nwrknj.fios.verizon.net [173.70.85.31]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 19C36B939 for ; Mon, 29 Sep 2014 11:54:27 -0400 (EDT) From: John Baldwin To: freebsd-arch@freebsd.org Subject: Removing disconnected tty drivers Date: Mon, 29 Sep 2014 11:53:53 -0400 Message-ID: <1789815.bS8Ac2qsJ6@ralph.baldwin.cx> User-Agent: KMail/4.12.5 (FreeBSD/10.1-BETA2; KDE/4.12.5; amd64; ; ) MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Mon, 29 Sep 2014 11:54:27 -0400 (EDT) X-BeenThere: freebsd-arch@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion related to FreeBSD architecture List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Sep 2014 15:54:28 -0000 The following drivers have never been converted to use the new tty layer introduced in 8.0 and have been disconnected since then. Several of them are for older multiport serial cards, and in the case of sio(4), current kernels use uart(4) instead. Barring major objections, I plan to remove them from the tree later this week. If someone wishes to update them, they can always be pulled back from svn history. dev/cx/if_cx.c: d->tty = ttyalloc (); dev/cy/cy.c: tp = com->tp = ttyalloc(); dev/digi/digi.c: tp = port->tp = ttyalloc(); dev/rc/rc.c: tp = rc->rc_tp = ttyalloc(); dev/sio/sio.c: tp = com->tp = ttyalloc(); pc98/cbus/sio.c: tp = com->tp = ttyalloc(); -- John Baldwin