From owner-dev-commits-src-all@freebsd.org Tue Jan 5 21:55:31 2021 Return-Path: Delivered-To: dev-commits-src-all@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 A8A914CC10B; Tue, 5 Jan 2021 21:55:31 +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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D9RBW4QK2z3NGv; Tue, 5 Jan 2021 21:55:31 +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 8A7D1139CC; Tue, 5 Jan 2021 21:55:31 +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 105LtVhU029654; Tue, 5 Jan 2021 21:55:31 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 105LtVwV029653; Tue, 5 Jan 2021 21:55:31 GMT (envelope-from git) Date: Tue, 5 Jan 2021 21:55:31 GMT Message-Id: <202101052155.105LtVwV029653@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org From: Ryan Libby Subject: git: f1007ba88d47 - stable/12 - ixl: quiet -Wunused-function MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: rlibby X-Git-Repository: src X-Git-Refname: refs/heads/stable/12 X-Git-Reftype: branch X-Git-Commit: f1007ba88d47d5e4911c7cede74d0b8c44fe8248 Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2021 21:55:31 -0000 The branch stable/12 has been updated by rlibby: URL: https://cgit.FreeBSD.org/src/commit/?id=f1007ba88d47d5e4911c7cede74d0b8c44fe8248 commit f1007ba88d47d5e4911c7cede74d0b8c44fe8248 Author: Ryan Libby AuthorDate: 2021-01-05 20:51:40 +0000 Commit: Ryan Libby CommitDate: 2021-01-05 20:51:40 +0000 ixl: quiet -Wunused-function Direct commit to stable/12. svn r363876 / git 2bba796c66ede62803ed5da3d83e7efb70c5e9bc MFC'd head svn r361992 / git b4a7ce0690aedd9763b3b47ee7fcdb421f0434c7. These two prototypes were brought back, but the definitions were not. The definitions had been introduced earlier for unrelated work, in svn r353503 / git ba76aa63573f4aeb8fbea6dc85548660cc6d083b, which has not been MFC'd. Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D27817 --- sys/dev/ixl/ixl_pf_main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/dev/ixl/ixl_pf_main.c b/sys/dev/ixl/ixl_pf_main.c index c272e27fb4a2..6990ef80a184 100644 --- a/sys/dev/ixl/ixl_pf_main.c +++ b/sys/dev/ixl/ixl_pf_main.c @@ -47,8 +47,6 @@ static u8 ixl_convert_sysctl_aq_link_speed(u8, bool); static void ixl_sbuf_print_bytes(struct sbuf *, u8 *, int, int, bool); static const char * ixl_link_speed_string(enum i40e_aq_link_speed); -static u_int ixl_add_maddr(void *, struct sockaddr_dl *, u_int); -static u_int ixl_match_maddr(void *, struct sockaddr_dl *, u_int); static char * ixl_switch_element_string(struct sbuf *, u8, u16); static enum ixl_fw_mode ixl_get_fw_mode(struct ixl_pf *);