aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ofw/ofw_disk.c
diff options
context:
space:
mode:
authorMarius Strobl <marius@FreeBSD.org>2004-08-16 15:45:27 +0000
committerMarius Strobl <marius@FreeBSD.org>2004-08-16 15:45:27 +0000
commit39513fa66497aa8f8b91f43c923db7d31db657a3 (patch)
treeb0e11f4b8347dd4899a1326d52f2bb6e6a254b40 /sys/dev/ofw/ofw_disk.c
parent76c4b2cb5d7557e74739571df0d38de52b65f5e1 (diff)
downloadsrc-39513fa66497aa8f8b91f43c923db7d31db657a3.tar.gz
src-39513fa66497aa8f8b91f43c923db7d31db657a3.zip
Instead of "OpenFirmware", "openfirmware", etc. use the official spelling
"Open Firmware" from IEEE 1275 and OpenFirmware.org (no pun intended). Ok'ed by: tmm
Notes
Notes: svn path=/head/; revision=133862
Diffstat (limited to 'sys/dev/ofw/ofw_disk.c')
-rw-r--r--sys/dev/ofw/ofw_disk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ofw/ofw_disk.c b/sys/dev/ofw/ofw_disk.c
index 24f7653ebf42..fa6ef22ca537 100644
--- a/sys/dev/ofw/ofw_disk.c
+++ b/sys/dev/ofw/ofw_disk.c
@@ -139,7 +139,7 @@ ofwd_strategy(struct bio *bp)
}
/*
- * Attach the OpenFirmware disk to nexus if present
+ * Attach the Open Firmware disk to nexus if present.
*/
static void
ofwd_identify(driver_t *driver, device_t parent)
@@ -162,7 +162,7 @@ ofwd_identify(driver_t *driver, device_t parent)
}
/*
- * Probe for an OpenFirmware disk.
+ * Probe for an Open Firmware disk.
*/
static int
ofwd_probe(device_t dev)
@@ -181,7 +181,7 @@ ofwd_probe(device_t dev)
if (OF_getprop(node, "file", fname, sizeof(fname)) == -1)
return (ENXIO);
- device_set_desc(dev, "OpenFirmware disk");
+ device_set_desc(dev, "Open Firmware disk");
return (0);
}