aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/bus_if.m
diff options
context:
space:
mode:
authorConrad Meyer <cem@FreeBSD.org>2017-01-15 17:54:01 +0000
committerConrad Meyer <cem@FreeBSD.org>2017-01-15 17:54:01 +0000
commitdb4fcadf52c891afffded7fc72b9d9298bc39e77 (patch)
tree0008fa14a230c4de259da7601d6669c249e16b5a /sys/kern/bus_if.m
parent953f538e0ee4699685bef4ce255a5dd94de56a2c (diff)
downloadsrc-db4fcadf52c891afffded7fc72b9d9298bc39e77.tar.gz
src-db4fcadf52c891afffded7fc72b9d9298bc39e77.zip
"Buses" is the preferred plural of "bus"
Replace archaic "busses" with modern form "buses." Intentionally excluded: * Old/random drivers I didn't recognize * Old hardware in general * Use of "busses" in code as identifiers No functional change. http://grammarist.com/spelling/buses-busses/ PR: 216099 Reported by: bltsrc at mail.ru Sponsored by: Dell EMC Isilon
Notes
Notes: svn path=/head/; revision=312234
Diffstat (limited to 'sys/kern/bus_if.m')
-rw-r--r--sys/kern/bus_if.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/bus_if.m b/sys/kern/bus_if.m
index 2b754387136f..25d060de44d5 100644
--- a/sys/kern/bus_if.m
+++ b/sys/kern/bus_if.m
@@ -206,7 +206,7 @@ METHOD void driver_added {
/**
* @brief Create a new child device
*
- * For busses which use use drivers supporting DEVICE_IDENTIFY() to
+ * For buses which use use drivers supporting DEVICE_IDENTIFY() to
* enumerate their devices, this method is used to create new
* device instances. The new device will be added after the last
* existing child with the same order. Implementations of bus_add_child
@@ -475,7 +475,7 @@ METHOD int teardown_intr {
* @brief Define a resource which can be allocated with
* BUS_ALLOC_RESOURCE().
*
- * This method is used by some busses (typically ISA) to allow a
+ * This method is used by some buses (typically ISA) to allow a
* driver to describe a resource range that it would like to
* allocate. The resource defined by @p _type and @p _rid is defined
* to start at @p _start and to include @p _count indices in its
@@ -562,7 +562,7 @@ METHOD struct resource_list * get_resource_list {
* should return -1 if it is present. Any errors in determining
* should be returned as a normal errno value. Client drivers are to
* assume that the device is present, even if there is an error
- * determining if it is there. Busses are to try to avoid returning
+ * determining if it is there. Buses are to try to avoid returning
* errors, but newcard will return an error if the device fails to
* implement this method.
*