svn commit: r332317 - head/share/man/man9
Oleksandr Tymoshenko
gonzo at FreeBSD.org
Mon Apr 9 05:48:13 UTC 2018
Author: gonzo
Date: Mon Apr 9 05:48:12 2018
New Revision: 332317
URL: https://svnweb.freebsd.org/changeset/base/332317
Log:
[man] Fix return type of BUS_ADD_CHILD(9)
Fix return type of BUS_ADD_CHILD(9) in SYNOPSYS section,
it should be device_t, not int
PR: 207389
MFC after: 3 days
Modified:
head/share/man/man9/BUS_ADD_CHILD.9
Modified: head/share/man/man9/BUS_ADD_CHILD.9
==============================================================================
--- head/share/man/man9/BUS_ADD_CHILD.9 Mon Apr 9 05:43:30 2018 (r332316)
+++ head/share/man/man9/BUS_ADD_CHILD.9 Mon Apr 9 05:48:12 2018 (r332317)
@@ -28,7 +28,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd October 28, 2015
+.Dd April 8, 2018
.Dt BUS_ADD_CHILD 9
.Os
.Sh NAME
@@ -37,7 +37,7 @@
.Sh SYNOPSIS
.In sys/param.h
.In sys/bus.h
-.Ft int
+.Ft device_t
.Fn BUS_ADD_CHILD "device_t dev" "int order" "const char *name" "int unit"
.Sh DESCRIPTION
The
More information about the svn-src-head
mailing list