From owner-dev-commits-src-main@freebsd.org Fri Jun 11 19:38:43 2021 Return-Path: Delivered-To: dev-commits-src-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A476B663649; Fri, 11 Jun 2021 19:38:43 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4G1rkC2yMPz4bX5; Fri, 11 Jun 2021 19:38:43 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 49EF428B41; Fri, 11 Jun 2021 19:38:43 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 15BJchws050920; Fri, 11 Jun 2021 19:38:43 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 15BJchmR050919; Fri, 11 Jun 2021 19:38:43 GMT (envelope-from git) Date: Fri, 11 Jun 2021 19:38:43 GMT Message-Id: <202106111938.15BJchmR050919@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Emmanuel Vadot Subject: git: ab30bb8270fa - main - an: Deprecate the driver MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: manu X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: ab30bb8270fa99503a0f204543a9ac3e3c7fa04d Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for the main branch of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Jun 2021 19:38:43 -0000 The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=ab30bb8270fa99503a0f204543a9ac3e3c7fa04d commit ab30bb8270fa99503a0f204543a9ac3e3c7fa04d Author: Emmanuel Vadot AuthorDate: 2021-06-07 16:45:58 +0000 Commit: Emmanuel Vadot CommitDate: 2021-06-11 19:17:34 +0000 an: Deprecate the driver Last an(4) devices have been End Of Life and End Of Sale in 2007. Time to remove this driver. Differential Revision: https://reviews.freebsd.org/D30678 Reviewed by: imp (earlier version), adrian (earlier version) MFC after: 3 days Sponsored by: Diablotin Systems --- share/man/man4/an.4 | 5 +++++ sys/dev/an/if_an.c | 1 + 2 files changed, 6 insertions(+) diff --git a/share/man/man4/an.4 b/share/man/man4/an.4 index aaa761a36b4d..1d624c0ae108 100644 --- a/share/man/man4/an.4 +++ b/share/man/man4/an.4 @@ -130,6 +130,11 @@ The .Nm device driver first appeared in .Fx 4.0 . +.Pp +The +.Nm +device driver was removed in +.Fx 14.0 . .Sh AUTHORS The .Nm diff --git a/sys/dev/an/if_an.c b/sys/dev/an/if_an.c index 205514bf0765..3a4db28f3eac 100644 --- a/sys/dev/an/if_an.c +++ b/sys/dev/an/if_an.c @@ -661,6 +661,7 @@ an_attach(struct an_softc *sc, int flags) int i, nrate, mword; u_int8_t r; + gone_in(14, "EOL/EOS in 2007"); ifp = sc->an_ifp = if_alloc(IFT_ETHER); if (ifp == NULL) { device_printf(sc->an_dev, "can not if_alloc()\n");