From owner-svn-src-head@freebsd.org Thu Feb 16 21:56:34 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 01465CE22B8; Thu, 16 Feb 2017 21:56:34 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A34731D16; Thu, 16 Feb 2017 21:56:33 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1GLuWWO043321; Thu, 16 Feb 2017 21:56:32 GMT (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1GLuW13043319; Thu, 16 Feb 2017 21:56:32 GMT (envelope-from imp@FreeBSD.org) Message-Id: <201702162156.v1GLuW13043319@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: imp set sender to imp@FreeBSD.org using -f From: Warner Losh Date: Thu, 16 Feb 2017 21:56:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r313827 - in head: share/man/man4 sys/dev/mlx X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Feb 2017 21:56:34 -0000 Author: imp Date: Thu Feb 16 21:56:32 2017 New Revision: 313827 URL: https://svnweb.freebsd.org/changeset/base/313827 Log: Remove references to EISA support in mlx. The driver never supported the EISA cards and EISA bus support is being removed. Modified: head/share/man/man4/mlx.4 head/sys/dev/mlx/mlx.c Modified: head/share/man/man4/mlx.4 ============================================================================== --- head/share/man/man4/mlx.4 Thu Feb 16 21:56:27 2017 (r313826) +++ head/share/man/man4/mlx.4 Thu Feb 16 21:56:32 2017 (r313827) @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd August 10, 2004 +.Dd February 15, 2017 .Dt MLX 4 .Os .Sh NAME @@ -245,7 +245,6 @@ This manual page was written by and .An Michael Smith Aq Mt msmith@FreeBSD.org . .Sh BUGS -The driver does not yet support EISA adapters. The DEC KZPSC has insufficient flash ROM to hold any reasonably recent firmware. This has caused problems for this driver. .Pp Modified: head/sys/dev/mlx/mlx.c ============================================================================== --- head/sys/dev/mlx/mlx.c Thu Feb 16 21:56:27 2017 (r313826) +++ head/sys/dev/mlx/mlx.c Thu Feb 16 21:56:32 2017 (r313827) @@ -450,7 +450,7 @@ mlx_attach(struct mlx_softc *sc) } sc->mlx_enq2->me_firmware_id = ('0' << 24) | (0 << 16) | (meo->me_fwminor << 8) | meo->me_fwmajor; - /* XXX require 2.42 or better (PCI) or 2.14 or better (EISA) */ + /* XXX require 2.42 or better (PCI) */ if (meo->me_fwminor < 42) { device_printf(sc->mlx_dev, " *** WARNING *** This firmware revision is not recommended\n"); device_printf(sc->mlx_dev, " *** WARNING *** Use revision 2.42 or later\n");