spelling fixes: arch/m68k/
authorSimon Arlott <simon@fire.lp0.eu>
Fri, 19 Oct 2007 23:20:32 +0000 (01:20 +0200)
committerAdrian Bunk <bunk@kernel.org>
Fri, 19 Oct 2007 23:20:32 +0000 (01:20 +0200)
Spelling fixes in arch/m68k/.

Signed-off-by: Simon Arlott <simon@fire.lp0.eu>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
arch/m68k/amiga/pcmcia.c
arch/m68k/mac/config.c
arch/m68k/mac/iop.c
arch/m68k/mac/oss.c
arch/m68k/mac/via.c
arch/m68k/math-emu/fp_log.c
arch/m68k/q40/q40ints.c
arch/m68k/sun3/mmu_emu.c

index fc57c6e72acf10d2bd30997f25cc222488f07813..186662ca1a89dd0603d8df5e9865b9d62dddbb32 100644 (file)
@@ -33,7 +33,7 @@ void pcmcia_reset(void)
 
 
 /* copy a tuple, including tuple header. return nb bytes copied */
-/* be carefull as this may trigger a GAYLE_IRQ_WR interrupt ! */
+/* be careful as this may trigger a GAYLE_IRQ_WR interrupt ! */
 
 int pcmcia_copy_tuple(unsigned char tuple_id, void *tuple, int max_len)
 {
index 8547dbc5e8d73335a9b78a2bb37a1e416ac37b8f..01b468b9392ec68cb1aade95d598adb06a51cdc5 100644 (file)
@@ -284,7 +284,7 @@ static struct mac_model mac_data_table[] = {
        },
 
        /*
-        *      Weirdified MacII hardware - all subtley different. Gee thanks
+        *      Weirdified MacII hardware - all subtly different. Gee thanks
         *      Apple. All these boxes seem to have VIA2 in a different place to
         *      the MacII (+1A000 rather than +4000)
         * CSA: see http://developer.apple.com/technotes/hw/hw_09.html
@@ -707,7 +707,7 @@ static struct mac_model mac_data_table[] = {
         * All of these probably have onboard SONIC in the Dock which
         * means we'll have to probe for it eventually.
         *
-        * Are these reallly MAC_VIA_IIci? The developer notes for the
+        * Are these really MAC_VIA_IIci? The developer notes for the
         * Duos show pretty much the same custom parts as in most of
         * the other PowerBooks which would imply MAC_VIA_QUADRA.
         */
index 0cea21f581926b07241e35ce621d1a6fc2b685fa..5b2799eb96a68f930d6d93e30873f6c796487c25 100644 (file)
  * finished; this function moves the message state to MSG_COMPLETE and signals
  * the IOP. This two-step process is provided to allow the handler to defer
  * message processing to a bottom-half handler if the processing will take
- * a signifigant amount of time (handlers are called at interrupt time so they
+ * a significant amount of time (handlers are called at interrupt time so they
  * should execute quickly.)
  */
 
 
 /*#define DEBUG_IOP*/
 
-/* Set to nonezero if the IOPs are present. Set by iop_init() */
+/* Set to non-zero if the IOPs are present. Set by iop_init() */
 
 int iop_scc_present,iop_ism_present;
 
index d7be16917efdf307292d90c68ec3ebc6900adc48..50603d3dce843798b488f249b95bc53d984cdb76 100644 (file)
@@ -8,7 +8,7 @@
  *
  * 990502 (jmt) - Major rewrite for new interrupt architecture as well as some
  *               recent insights into OSS operational details.
- * 990610 (jmt) - Now taking fulll advantage of the OSS. Interrupts are mapped
+ * 990610 (jmt) - Now taking full advantage of the OSS. Interrupts are mapped
  *               to mostly match the A/UX interrupt scheme supported on the
  *               VIA side. Also added support for enabling the ISM irq again
  *               since we now have a functional IOP manager.
index d5cac72eb3db1d25b41ef780372a69a36742c925..8df270e950fabead2b0f0a2f2cf247d6fb02c41b 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *     6522 Versatile Interface Adapter (VIA)
  *
- *     There are two of these on the Mac II. Some IRQ's are vectored
+ *     There are two of these on the Mac II. Some IRQs are vectored
  *     via them as are assorted bits and bobs - eg RTC, ADB.
  *
  * CSA: Motorola seems to have removed documentation on the 6522 from
index 87b4f0158560492d4ddfb243debbd8a6e4902a38..b1033ae0d6f084a357ddf318a8e67b10d789098a 100644 (file)
@@ -65,7 +65,7 @@ fp_fsqrt(struct fp_ext *dest, struct fp_ext *src)
        fp_copy_ext(&src2, dest);
 
        /*
-        * The taylor row arround a for sqrt(x) is:
+        * The taylor row around a for sqrt(x) is:
         *      sqrt(x) = sqrt(a) + 1/(2*sqrt(a))*(x-a) + R
         * With a=1 this gives:
         *      sqrt(x) = 1 + 1/2*(x-1)
index ad3ed1fb88793e066aca96628a8ecb505f038d05..46161cef08b95520733b048b6cd40e53b7ad2716 100644 (file)
@@ -184,7 +184,7 @@ static struct IRQ_TABLE eirqs[] = {
 };
 
 /* complain only this many times about spurious ints : */
-static int ccleirq=60;    /* ISA dev IRQ's*/
+static int ccleirq=60;    /* ISA dev IRQs*/
 /*static int cclirq=60;*/     /* internal */
 
 /* FIXME: add shared ints,mask,unmask,probing.... */
@@ -234,7 +234,7 @@ static void q40_irq_handler(unsigned int irq, struct pt_regs *fp)
  * There is a little mess wrt which IRQ really caused this irq request. The
  * main problem is that IIRQ_REG and EIRQ_REG reflect the state when they
  * are read - which is long after the request came in. In theory IRQs should
- * not just go away but they occassionally do
+ * not just go away but they occasionally do
  */
                                if (irq > 4 && irq <= 15 && mext_disabled) {
                                        /*aliased_irq++;*/
index 7a0e3a22068708a47b1872c4dcc35507a3f515c5..fb0f6a20cc3c80dab2ca2f3f073bef4d006d63ae 100644 (file)
@@ -239,7 +239,7 @@ void clear_context(unsigned long context)
 /* gets an empty context.  if full, kills the next context listed to
    die first */
 /* This context invalidation scheme is, well, totally arbitrary, I'm
-   sure it could be much more intellegent...  but it gets the job done
+   sure it could be much more intelligent...  but it gets the job done
    for now without much overhead in making it's decision. */
 /* todo: come up with optimized scheme for flushing contexts */
 unsigned long get_free_context(struct mm_struct *mm)