summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarius <marius@FreeBSD.org>2011-04-22 09:31:40 +0000
committermarius <marius@FreeBSD.org>2011-04-22 09:31:40 +0000
commitcbd047e88cc93370c2a6031baac090eccb113f80 (patch)
treed7487b47a6171f651554f6c01f319013d0a77d63
parentd6656eb1dc46b7c50befb9f030678f8b6208b6fd (diff)
downloadFreeBSD-src-cbd047e88cc93370c2a6031baac090eccb113f80.zip
FreeBSD-src-cbd047e88cc93370c2a6031baac090eccb113f80.tar.gz
Correct spelling in comments.
Submitted by: brucec
-rw-r--r--sys/sparc64/include/cpufunc.h2
-rw-r--r--sys/sparc64/sbus/lsi64854.c4
-rw-r--r--sys/sparc64/sbus/ofw_sbus.h2
-rw-r--r--sys/sparc64/sparc64/exception.S4
-rw-r--r--sys/sparc64/sparc64/machdep.c2
-rw-r--r--sys/sparc64/sparc64/pmap.c2
6 files changed, 8 insertions, 8 deletions
diff --git a/sys/sparc64/include/cpufunc.h b/sys/sparc64/include/cpufunc.h
index 6bba4d6..abfbd1f 100644
--- a/sys/sparc64/include/cpufunc.h
+++ b/sys/sparc64/include/cpufunc.h
@@ -187,7 +187,7 @@ int fasword32(u_long asi, void *addr, uint32_t *val);
/*
* Macro intended to be used instead of wr(asr23, val, xorval) for writing to
* the TICK_COMPARE register in order to avoid a bug in BlackBird CPUs that
- * can cause these writes to fail under certain condidtions which in turn
+ * can cause these writes to fail under certain conditions which in turn
* causes the hardclock to stop. The workaround is to read the TICK_COMPARE
* register back immediately after writing to it with these two instructions
* aligned to a quadword boundary in order to ensure that I$ misses won't
diff --git a/sys/sparc64/sbus/lsi64854.c b/sys/sparc64/sbus/lsi64854.c
index 313b32a..61a7766 100644
--- a/sys/sparc64/sbus/lsi64854.c
+++ b/sys/sparc64/sbus/lsi64854.c
@@ -521,7 +521,7 @@ lsi64854_scsi_intr(void *arg)
}
trans = sc->sc_dmasize - resid;
- if (trans < 0) { /* transfered < 0? */
+ if (trans < 0) { /* transferred < 0? */
#if 0
/*
* This situation can happen in perfectly normal operation
@@ -711,7 +711,7 @@ lsi64854_pp_intr(void *arg)
sc->sc_active = 0;
trans = sc->sc_dmasize - resid;
- if (trans < 0) /* transfered < 0? */
+ if (trans < 0) /* transferred < 0? */
trans = sc->sc_dmasize;
*sc->sc_dmalen -= trans;
*sc->sc_dmaaddr += trans;
diff --git a/sys/sparc64/sbus/ofw_sbus.h b/sys/sparc64/sbus/ofw_sbus.h
index 84e1059..53027a2 100644
--- a/sys/sparc64/sbus/ofw_sbus.h
+++ b/sys/sparc64/sbus/ofw_sbus.h
@@ -41,7 +41,7 @@ struct sbus_regs {
u_int32_t sbr_size;
};
-/* Address translation accross busses */
+/* Address translation across busses */
struct sbus_ranges {
u_int32_t cspace; /* Client space */
u_int32_t coffset; /* Client offset */
diff --git a/sys/sparc64/sparc64/exception.S b/sys/sparc64/sparc64/exception.S
index 21c79ff..ed0e381 100644
--- a/sys/sparc64/sparc64/exception.S
+++ b/sys/sparc64/sparc64/exception.S
@@ -381,7 +381,7 @@ END(rsf_fatal)
* Due to its size a trap table is an inherently hard thing to represent in
* code in a clean way. There are approximately 1024 vectors, of 8 or 32
* instructions each, many of which are identical. The way that this is
- * layed out is the instructions (8 or 32) for the actual trap vector appear
+ * laid out is the instructions (8 or 32) for the actual trap vector appear
* as an AS macro. In general this code branches to tl0_trap or tl1_trap,
* but if not supporting code can be placed just after the definition of the
* macro. The macros are then instantiated in a different section (.trap),
@@ -2486,7 +2486,7 @@ ENTRY(tl0_ret)
* Check for pending asts atomically with returning. We must raise
* the PIL before checking, and if no asts are found the PIL must
* remain raised until the retry is executed, or we risk missing asts
- * caused by interrupts occuring after the test. If the PIL is
+ * caused by interrupts occurring after the test. If the PIL is
* lowered, as it is when we call ast, the check must be re-executed.
*/
wrpr %g0, PIL_TICK, %pil
diff --git a/sys/sparc64/sparc64/machdep.c b/sys/sparc64/sparc64/machdep.c
index 86e0af8..abf3a91 100644
--- a/sys/sparc64/sparc64/machdep.c
+++ b/sys/sparc64/sparc64/machdep.c
@@ -566,7 +566,7 @@ sparc64_init(caddr_t mdp, u_long o1, u_long o2, u_long o3, ofw_vec_t *vec)
* is necessary in order to set obp-control-relinquished to true
* within the PROM so obtaining /virtual-memory/translations doesn't
* trigger a fatal reset error or worse things further down the road.
- * XXX it should be possible to use this soley instead of writing
+ * XXX it should be possible to use this solely instead of writing
* %tba in cpu_setregs(). Doing so causes a hang however.
*/
sun4u_set_traptable(tl0_base);
diff --git a/sys/sparc64/sparc64/pmap.c b/sys/sparc64/sparc64/pmap.c
index 7fbae8f..09482b9 100644
--- a/sys/sparc64/sparc64/pmap.c
+++ b/sys/sparc64/sparc64/pmap.c
@@ -1062,7 +1062,7 @@ pmap_kenter(vm_offset_t va, vm_page_t m)
/*
* Map a wired page into kernel virtual address space. This additionally
- * takes a flag argument wich is or'ed to the TTE data. This is used by
+ * takes a flag argument which is or'ed to the TTE data. This is used by
* sparc64_bus_mem_map().
* NOTE: if the mapping is non-cacheable, it's the caller's responsibility
* to flush entries that might still be in the cache, if applicable.
OpenPOWER on IntegriCloud