From owner-svn-src-stable@freebsd.org Mon Apr 2 16:11:50 2018 Return-Path: Delivered-To: svn-src-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AAFF7F74C00; Mon, 2 Apr 2018 16:11:50 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 02BC685423; Mon, 2 Apr 2018 16:11:50 +0000 (UTC) (envelope-from brooks@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F1C9B17F27; Mon, 2 Apr 2018 16:11:49 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w32GBnuh046116; Mon, 2 Apr 2018 16:11:49 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w32GBncd046112; Mon, 2 Apr 2018 16:11:49 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201804021611.w32GBncd046112@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Mon, 2 Apr 2018 16:11:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r331882 - in stable/11: share/man/man4 sys/dev/cm sys/dev/pdq X-SVN-Group: stable-11 X-SVN-Commit-Author: brooks X-SVN-Commit-Paths: in stable/11: share/man/man4 sys/dev/cm sys/dev/pdq X-SVN-Commit-Revision: 331882 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Apr 2018 16:11:51 -0000 Author: brooks Date: Mon Apr 2 16:11:49 2018 New Revision: 331882 URL: https://svnweb.freebsd.org/changeset/base/331882 Log: MFC r331830: Add deprecation notices for Arcnet and FDDI drivers. We intend to remove support before FreeBSD 12 is branched. Reviewed by: imp, emaste Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D14890 Modified: stable/11/share/man/man4/cm.4 stable/11/share/man/man4/fpa.4 stable/11/sys/dev/cm/if_cm_isa.c stable/11/sys/dev/pdq/if_fpa.c Directory Properties: stable/11/ (props changed) Modified: stable/11/share/man/man4/cm.4 ============================================================================== --- stable/11/share/man/man4/cm.4 Mon Apr 2 16:08:51 2018 (r331881) +++ stable/11/share/man/man4/cm.4 Mon Apr 2 16:11:49 2018 (r331882) @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd July 16, 2005 +.Dd March 29, 2018 .Dt CM 4 .Os .Sh NAME @@ -46,6 +46,12 @@ module at boot time, place the following line in .Bd -literal -offset indent if_cm_load="YES" .Ed +.Sh DEPRECATION NOTICE +The +.Nm +driver is not present in +.Fx 12.0 +and later. .Sh DESCRIPTION The .Nm Modified: stable/11/share/man/man4/fpa.4 ============================================================================== --- stable/11/share/man/man4/fpa.4 Mon Apr 2 16:08:51 2018 (r331881) +++ stable/11/share/man/man4/fpa.4 Mon Apr 2 16:11:49 2018 (r331882) @@ -4,7 +4,7 @@ .\" .\" $FreeBSD$ .\" -.Dd March 13, 1995 +.Dd March 29, 2018 .Dt FPA 4 .Os .Sh NAME @@ -18,6 +18,12 @@ .Fx only: .Cd "device fddi" +.Sh DEPRECATION NOTICE +The +.Nm +driver is not present in +.Fx 12.0 +and later. .Sh DESCRIPTION The .Nm Modified: stable/11/sys/dev/cm/if_cm_isa.c ============================================================================== --- stable/11/sys/dev/cm/if_cm_isa.c Mon Apr 2 16:08:51 2018 (r331881) +++ stable/11/sys/dev/cm/if_cm_isa.c Mon Apr 2 16:11:49 2018 (r331882) @@ -111,6 +111,7 @@ cm_isa_attach(dev) if (error) goto err; + gone_in_dev(dev, 12, "cm(4) driver"); return 0; err: Modified: stable/11/sys/dev/pdq/if_fpa.c ============================================================================== --- stable/11/sys/dev/pdq/if_fpa.c Mon Apr 2 16:08:51 2018 (r331881) +++ stable/11/sys/dev/pdq/if_fpa.c Mon Apr 2 16:11:49 2018 (r331882) @@ -156,6 +156,7 @@ pdq_pci_attach(device_t dev) } + gone_in_dev(dev, 12, "fpa(4) driver"); return (0); bad: pdq_free(dev);