summaryrefslogtreecommitdiffstats
path: root/sys/powerpc
diff options
context:
space:
mode:
authormarius <marius@FreeBSD.org>2004-08-16 15:45:27 +0000
committermarius <marius@FreeBSD.org>2004-08-16 15:45:27 +0000
commit24ad8a984216ddd6cda66a3325a55fe6bd74b88c (patch)
treeb0e11f4b8347dd4899a1326d52f2bb6e6a254b40 /sys/powerpc
parente81a15aa811662f8a2b4804b1134c73089382dea (diff)
downloadFreeBSD-src-24ad8a984216ddd6cda66a3325a55fe6bd74b88c.zip
FreeBSD-src-24ad8a984216ddd6cda66a3325a55fe6bd74b88c.tar.gz
Instead of "OpenFirmware", "openfirmware", etc. use the official spelling
"Open Firmware" from IEEE 1275 and OpenFirmware.org (no pun intended). Ok'ed by: tmm
Diffstat (limited to 'sys/powerpc')
-rw-r--r--sys/powerpc/aim/locore.S2
-rw-r--r--sys/powerpc/aim/mmu_oea.c2
-rw-r--r--sys/powerpc/aim/nexus.c6
-rw-r--r--sys/powerpc/aim/ofw_machdep.c2
-rw-r--r--sys/powerpc/aim/ofwmagic.S2
-rw-r--r--sys/powerpc/conf/GENERIC2
-rw-r--r--sys/powerpc/ofw/ofw_pcib_pci.c2
-rw-r--r--sys/powerpc/powermac/ata_kauai.c2
-rw-r--r--sys/powerpc/powermac/hrowpic.c2
-rw-r--r--sys/powerpc/powermac/macio.c2
-rw-r--r--sys/powerpc/powermac/uninorth.c4
-rw-r--r--sys/powerpc/powerpc/locore.S2
-rw-r--r--sys/powerpc/powerpc/mmu_oea.c2
-rw-r--r--sys/powerpc/powerpc/nexus.c6
-rw-r--r--sys/powerpc/powerpc/ofw_machdep.c2
-rw-r--r--sys/powerpc/powerpc/ofwmagic.S2
-rw-r--r--sys/powerpc/powerpc/pmap.c2
17 files changed, 22 insertions, 22 deletions
diff --git a/sys/powerpc/aim/locore.S b/sys/powerpc/aim/locore.S
index fb12dea..53ff043 100644
--- a/sys/powerpc/aim/locore.S
+++ b/sys/powerpc/aim/locore.S
@@ -102,7 +102,7 @@ GLOBAL(eintrcnt)
idle_u:
.long 0 /* fake uarea during idle after exit */
openfirmware_entry:
- .long 0 /* openfirmware entry point */
+ .long 0 /* Open Firmware entry point */
srsave:
.long 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/sys/powerpc/aim/mmu_oea.c b/sys/powerpc/aim/mmu_oea.c
index 08d7275..87be1ce 100644
--- a/sys/powerpc/aim/mmu_oea.c
+++ b/sys/powerpc/aim/mmu_oea.c
@@ -689,7 +689,7 @@ pmap_bootstrap(vm_offset_t kernelstart, vm_offset_t kernelend)
pmap_vsid_bitmap[0] |= 1;
/*
- * Set up the OpenFirmware pmap and add it's mappings.
+ * Set up the Open Firmware pmap and add it's mappings.
*/
pmap_pinit(&ofw_pmap);
ofw_pmap.pm_sr[KERNEL_SR] = KERNEL_SEGMENT;
diff --git a/sys/powerpc/aim/nexus.c b/sys/powerpc/aim/nexus.c
index bed24d6..0df66db 100644
--- a/sys/powerpc/aim/nexus.c
+++ b/sys/powerpc/aim/nexus.c
@@ -78,11 +78,11 @@
/*
* The nexus (which is a pseudo-bus actually) iterates over the nodes that
- * exist in OpenFirmware and adds them as devices to this bus so that drivers
+ * exist in Open Firmware and adds them as devices to this bus so that drivers
* can be attached to them.
*
* Maybe this code should get into dev/ofw to some extent, as some of it should
- * work for all OpenFirmware based machines...
+ * work for all Open Firmware based machines...
*/
static MALLOC_DEFINE(M_NEXUS, "nexus", "nexus device information");
@@ -190,7 +190,7 @@ nexus_probe(device_t dev)
(void)nexus_device_from_node(dev, child);
}
- device_set_desc(dev, "OpenFirmware Nexus device");
+ device_set_desc(dev, "Open Firmware Nexus device");
return (0);
}
diff --git a/sys/powerpc/aim/ofw_machdep.c b/sys/powerpc/aim/ofw_machdep.c
index c00ca86..876f885 100644
--- a/sys/powerpc/aim/ofw_machdep.c
+++ b/sys/powerpc/aim/ofw_machdep.c
@@ -178,7 +178,7 @@ openfirmware(void *args)
if (pmap_bootstrapped) {
/*
- * Swap the kernel's address space with OpenFirmware's
+ * Swap the kernel's address space with Open Firmware's
*/
for (i = 0; i < 16; i++) {
srsave[i] = mfsrin(i << ADDR_SR_SHFT);
diff --git a/sys/powerpc/aim/ofwmagic.S b/sys/powerpc/aim/ofwmagic.S
index 033a5fe..55af6d2 100644
--- a/sys/powerpc/aim/ofwmagic.S
+++ b/sys/powerpc/aim/ofwmagic.S
@@ -38,7 +38,7 @@
*/
/*
- * Magic note section used by OpenFirmware.
+ * Magic note section used by Open Firmware.
*/
.section ".note"
diff --git a/sys/powerpc/conf/GENERIC b/sys/powerpc/conf/GENERIC
index bbd5ca3..35eec94 100644
--- a/sys/powerpc/conf/GENERIC
+++ b/sys/powerpc/conf/GENERIC
@@ -111,7 +111,7 @@ device ppp # Kernel PPP
device tun # Packet tunnel.
device pty # Pseudo-ttys (telnet etc)
device md # Memory "disks"
-device ofwd # OpenFirmware disks
+device ofwd # Open Firmware disks
device gif # IPv6 and IPv4 tunneling
device faith # IPv6-to-IPv4 relaying/(translation)
diff --git a/sys/powerpc/ofw/ofw_pcib_pci.c b/sys/powerpc/ofw/ofw_pcib_pci.c
index 6cf5cb8..6307d05 100644
--- a/sys/powerpc/ofw/ofw_pcib_pci.c
+++ b/sys/powerpc/ofw/ofw_pcib_pci.c
@@ -95,7 +95,7 @@ ofw_pcib_pci_probe(device_t dev)
return (ENXIO);
}
- device_set_desc(dev, "OpenFirmware PCI-PCI bridge");
+ device_set_desc(dev, "Open Firmware PCI-PCI bridge");
return (-1000);
}
diff --git a/sys/powerpc/powermac/ata_kauai.c b/sys/powerpc/powermac/ata_kauai.c
index 47d8115..6558095 100644
--- a/sys/powerpc/powermac/ata_kauai.c
+++ b/sys/powerpc/powermac/ata_kauai.c
@@ -141,7 +141,7 @@ ata_kauai_probe(device_t dev)
* This device seems to ignore writes to the interrupt
* config register, resulting in interrupt resources
* not being attached. If this is the case, use
- * OpenFirmware to determine the irq, and then attach
+ * Open Firmware to determine the irq, and then attach
* the resource. This allows the ATA common code to
* allocate the irq.
*/
diff --git a/sys/powerpc/powermac/hrowpic.c b/sys/powerpc/powermac/hrowpic.c
index 0c1fd4b..3c657d8 100644
--- a/sys/powerpc/powermac/hrowpic.c
+++ b/sys/powerpc/powermac/hrowpic.c
@@ -32,7 +32,7 @@
* This was superseded by an OpenPIC in the Keylargo and beyond
* MacIO versions.
*
- * The device is initially located in the OpenFirmware device tree
+ * The device is initially located in the Open Firmware device tree
* in the earliest stage of the nexus probe. However, no device registers
* are touched until the actual h/w is probed later on during the
* MacIO probe. At that point, any interrupt sources that were allocated
diff --git a/sys/powerpc/powermac/macio.c b/sys/powerpc/powermac/macio.c
index 1bf007d..0bc7a71 100644
--- a/sys/powerpc/powermac/macio.c
+++ b/sys/powerpc/powermac/macio.c
@@ -243,7 +243,7 @@ macio_probe(device_t dev)
}
/*
- * PCI attach: scan OpenFirmware child nodes, and attach these as children
+ * PCI attach: scan Open Firmware child nodes, and attach these as children
* of the macio bus
*/
static int
diff --git a/sys/powerpc/powermac/uninorth.c b/sys/powerpc/powermac/uninorth.c
index c609a00..1eca880 100644
--- a/sys/powerpc/powermac/uninorth.c
+++ b/sys/powerpc/powermac/uninorth.c
@@ -230,8 +230,8 @@ uninorth_attach(device_t dev)
}
/*
- * Enable the GMAC ethernet cell if OpenFirmware says it is
- * used
+ * Enable the GMAC Ethernet cell if Open Firmware says it is
+ * used.
*/
for (child = OF_child(node); child; child = OF_peer(child)) {
char compat[32];
diff --git a/sys/powerpc/powerpc/locore.S b/sys/powerpc/powerpc/locore.S
index fb12dea..53ff043 100644
--- a/sys/powerpc/powerpc/locore.S
+++ b/sys/powerpc/powerpc/locore.S
@@ -102,7 +102,7 @@ GLOBAL(eintrcnt)
idle_u:
.long 0 /* fake uarea during idle after exit */
openfirmware_entry:
- .long 0 /* openfirmware entry point */
+ .long 0 /* Open Firmware entry point */
srsave:
.long 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/sys/powerpc/powerpc/mmu_oea.c b/sys/powerpc/powerpc/mmu_oea.c
index 08d7275..87be1ce 100644
--- a/sys/powerpc/powerpc/mmu_oea.c
+++ b/sys/powerpc/powerpc/mmu_oea.c
@@ -689,7 +689,7 @@ pmap_bootstrap(vm_offset_t kernelstart, vm_offset_t kernelend)
pmap_vsid_bitmap[0] |= 1;
/*
- * Set up the OpenFirmware pmap and add it's mappings.
+ * Set up the Open Firmware pmap and add it's mappings.
*/
pmap_pinit(&ofw_pmap);
ofw_pmap.pm_sr[KERNEL_SR] = KERNEL_SEGMENT;
diff --git a/sys/powerpc/powerpc/nexus.c b/sys/powerpc/powerpc/nexus.c
index bed24d6..0df66db 100644
--- a/sys/powerpc/powerpc/nexus.c
+++ b/sys/powerpc/powerpc/nexus.c
@@ -78,11 +78,11 @@
/*
* The nexus (which is a pseudo-bus actually) iterates over the nodes that
- * exist in OpenFirmware and adds them as devices to this bus so that drivers
+ * exist in Open Firmware and adds them as devices to this bus so that drivers
* can be attached to them.
*
* Maybe this code should get into dev/ofw to some extent, as some of it should
- * work for all OpenFirmware based machines...
+ * work for all Open Firmware based machines...
*/
static MALLOC_DEFINE(M_NEXUS, "nexus", "nexus device information");
@@ -190,7 +190,7 @@ nexus_probe(device_t dev)
(void)nexus_device_from_node(dev, child);
}
- device_set_desc(dev, "OpenFirmware Nexus device");
+ device_set_desc(dev, "Open Firmware Nexus device");
return (0);
}
diff --git a/sys/powerpc/powerpc/ofw_machdep.c b/sys/powerpc/powerpc/ofw_machdep.c
index c00ca86..876f885 100644
--- a/sys/powerpc/powerpc/ofw_machdep.c
+++ b/sys/powerpc/powerpc/ofw_machdep.c
@@ -178,7 +178,7 @@ openfirmware(void *args)
if (pmap_bootstrapped) {
/*
- * Swap the kernel's address space with OpenFirmware's
+ * Swap the kernel's address space with Open Firmware's
*/
for (i = 0; i < 16; i++) {
srsave[i] = mfsrin(i << ADDR_SR_SHFT);
diff --git a/sys/powerpc/powerpc/ofwmagic.S b/sys/powerpc/powerpc/ofwmagic.S
index 033a5fe..55af6d2 100644
--- a/sys/powerpc/powerpc/ofwmagic.S
+++ b/sys/powerpc/powerpc/ofwmagic.S
@@ -38,7 +38,7 @@
*/
/*
- * Magic note section used by OpenFirmware.
+ * Magic note section used by Open Firmware.
*/
.section ".note"
diff --git a/sys/powerpc/powerpc/pmap.c b/sys/powerpc/powerpc/pmap.c
index 08d7275..87be1ce 100644
--- a/sys/powerpc/powerpc/pmap.c
+++ b/sys/powerpc/powerpc/pmap.c
@@ -689,7 +689,7 @@ pmap_bootstrap(vm_offset_t kernelstart, vm_offset_t kernelend)
pmap_vsid_bitmap[0] |= 1;
/*
- * Set up the OpenFirmware pmap and add it's mappings.
+ * Set up the Open Firmware pmap and add it's mappings.
*/
pmap_pinit(&ofw_pmap);
ofw_pmap.pm_sr[KERNEL_SR] = KERNEL_SEGMENT;
OpenPOWER on IntegriCloud