From owner-svn-src-head@freebsd.org Thu Oct 11 21:18:52 2018 Return-Path: Delivered-To: svn-src-head@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 8E5FE10C83E0; Thu, 11 Oct 2018 21:18:52 +0000 (UTC) (envelope-from yuripv@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 4264082BB0; Thu, 11 Oct 2018 21:18:52 +0000 (UTC) (envelope-from yuripv@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 38B4915DF5; Thu, 11 Oct 2018 21:18:52 +0000 (UTC) (envelope-from yuripv@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9BLIqTh033424; Thu, 11 Oct 2018 21:18:52 GMT (envelope-from yuripv@FreeBSD.org) Received: (from yuripv@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9BLIqEa033423; Thu, 11 Oct 2018 21:18:52 GMT (envelope-from yuripv@FreeBSD.org) Message-Id: <201810112118.w9BLIqEa033423@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuripv set sender to yuripv@FreeBSD.org using -f From: Yuri Pankov Date: Thu, 11 Oct 2018 21:18:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r339318 - head/share/man/man9 X-SVN-Group: head X-SVN-Commit-Author: yuripv X-SVN-Commit-Paths: head/share/man/man9 X-SVN-Commit-Revision: 339318 X-SVN-Commit-Repository: base 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.27 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, 11 Oct 2018 21:18:52 -0000 Author: yuripv Date: Thu Oct 11 21:18:51 2018 New Revision: 339318 URL: https://svnweb.freebsd.org/changeset/base/339318 Log: MODULE_PNP_INFO(9): catch up with r338948, and remove the element size parameter from the man page. Reviewed by: cem, imp Approved by: re (gjb), kib (mentor) Differential Revision: https://reviews.freebsd.org/D17436 Modified: head/share/man/man9/MODULE_PNP_INFO.9 Modified: head/share/man/man9/MODULE_PNP_INFO.9 ============================================================================== --- head/share/man/man9/MODULE_PNP_INFO.9 Thu Oct 11 20:44:25 2018 (r339317) +++ head/share/man/man9/MODULE_PNP_INFO.9 Thu Oct 11 21:18:51 2018 (r339318) @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd October 2, 2018 +.Dd October 5, 2018 .Dt MODULE_PNP_INFO 9 .Os .Sh NAME @@ -38,7 +38,6 @@ .Fa "bus" .Fa "module" .Fa "void *table" -.Fa "size_t entry_len" .Fa "size_t num_entries" .Fc .\" @@ -143,11 +142,6 @@ parameter points to the device matching data with entr .Fa descriptor_string . .Pp The -.Fa entry_len -parameter is the size of each table entry, i.e., -.Ql sizeof(table[0]) . -.Pp -The .Fa num_entries parameter is the number of entries in the table, i.e., .Ql nitems(table) . @@ -178,7 +172,7 @@ static struct my_pciids { }; MODULE_PNP_INFO("W32:vendor/device;D:#", pci, my_driver, my_ids, - sizeof(my_ids[0]), nitems(my_ids)); + nitems(my_ids)); .Ed .It Sy Example 2\&: No Using T for common vendor value .Pp @@ -198,7 +192,7 @@ static struct my_pciids { }; MODULE_PNP_INFO("U16:device;D:#;T:vendor=0x1234", pci, my_driver, - my_ids, sizeof(my_ids[0]), nitems(my_ids)); + my_ids, nitems(my_ids)); .Ed .El .\"