git: 09e5d91069d1 - main - puc: fix man page reference
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 24 Jul 2023 12:55:36 UTC
The branch main has been updated by mhorne:
URL: https://cgit.FreeBSD.org/src/commit/?id=09e5d91069d13000d1d93b0e6a26731926d500e1
commit 09e5d91069d13000d1d93b0e6a26731926d500e1
Author: Mitchell Horne <mhorne@FreeBSD.org>
AuthorDate: 2023-07-24 12:52:19 +0000
Commit: Mitchell Horne <mhorne@FreeBSD.org>
CommitDate: 2023-07-24 12:54:42 +0000
puc: fix man page reference
The reference to puc(9) is wrong; the page does not exist, and drivers
belong to section 4. Change the reference to puc(4), which does exist.
MFC after: 3 days
Sponsored by: The FreeBSD Foundation
---
sys/dev/puc/puc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/puc/puc.c b/sys/dev/puc/puc.c
index 6a90f130864b..4936bfaaf203 100644
--- a/sys/dev/puc/puc.c
+++ b/sys/dev/puc/puc.c
@@ -74,7 +74,7 @@ const char puc_driver_name[] = "puc";
static MALLOC_DEFINE(M_PUC, "PUC", "PUC driver");
SYSCTL_NODE(_hw, OID_AUTO, puc, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
- "puc(9) driver configuration");
+ "puc(4) driver configuration");
struct puc_bar *
puc_get_bar(struct puc_softc *sc, int rid)