diff options
author | marius <marius@FreeBSD.org> | 2011-04-22 09:31:40 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2011-04-22 09:31:40 +0000 |
commit | cbd047e88cc93370c2a6031baac090eccb113f80 (patch) | |
tree | d7487b47a6171f651554f6c01f319013d0a77d63 /sys/sparc64/sbus | |
parent | d6656eb1dc46b7c50befb9f030678f8b6208b6fd (diff) | |
download | FreeBSD-src-cbd047e88cc93370c2a6031baac090eccb113f80.zip FreeBSD-src-cbd047e88cc93370c2a6031baac090eccb113f80.tar.gz |
Correct spelling in comments.
Submitted by: brucec
Diffstat (limited to 'sys/sparc64/sbus')
-rw-r--r-- | sys/sparc64/sbus/lsi64854.c | 4 | ||||
-rw-r--r-- | sys/sparc64/sbus/ofw_sbus.h | 2 |
2 files changed, 3 insertions, 3 deletions
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 */ |