diff options
author | Simon Arlott <simon@fire.lp0.eu> | 2007-10-19 19:04:37 -0400 |
---|---|---|
committer | Adrian Bunk <bunk@kernel.org> | 2007-10-19 19:04:37 -0400 |
commit | c3a2ddee16e67c86f3b469ccdd396cda034756a9 (patch) | |
tree | 302c40250f7af0b76d5f9f034ad45f3cb2eca4bc /arch/alpha/kernel | |
parent | 24b7ce985aaa0adc922d0cbd3d53a186c33d7b33 (diff) |
spelling fixes: arch/alpha/
Spelling fixes in arch/alpha/.
Signed-off-by: Simon Arlott <simon@fire.lp0.eu>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Diffstat (limited to 'arch/alpha/kernel')
-rw-r--r-- | arch/alpha/kernel/err_marvel.c | 2 | ||||
-rw-r--r-- | arch/alpha/kernel/err_titan.c | 2 | ||||
-rw-r--r-- | arch/alpha/kernel/osf_sys.c | 2 | ||||
-rw-r--r-- | arch/alpha/kernel/smp.c | 1 | ||||
-rw-r--r-- | arch/alpha/kernel/sys_alcor.c | 2 | ||||
-rw-r--r-- | arch/alpha/kernel/sys_sio.c | 2 |
6 files changed, 5 insertions, 6 deletions
diff --git a/arch/alpha/kernel/err_marvel.c b/arch/alpha/kernel/err_marvel.c index f2956ac8dccc..497877bf2012 100644 --- a/arch/alpha/kernel/err_marvel.c +++ b/arch/alpha/kernel/err_marvel.c | |||
@@ -1082,7 +1082,7 @@ marvel_machine_check(u64 vector, u64 la_ptr) | |||
1082 | } | 1082 | } |
1083 | 1083 | ||
1084 | /* | 1084 | /* |
1085 | * A system event or error has occured, handle it here. | 1085 | * A system event or error has occurred, handle it here. |
1086 | * | 1086 | * |
1087 | * Any errors in the logout frame have already been cleared by the | 1087 | * Any errors in the logout frame have already been cleared by the |
1088 | * PALcode, so just parse it. | 1088 | * PALcode, so just parse it. |
diff --git a/arch/alpha/kernel/err_titan.c b/arch/alpha/kernel/err_titan.c index 543d96d7fa2b..6f3867877d9e 100644 --- a/arch/alpha/kernel/err_titan.c +++ b/arch/alpha/kernel/err_titan.c | |||
@@ -591,7 +591,7 @@ privateer_process_680_frame(struct el_common *mchk_header, int print) | |||
591 | (struct el_PRIVATEER_envdata_mcheck *) | 591 | (struct el_PRIVATEER_envdata_mcheck *) |
592 | ((unsigned long)mchk_header + mchk_header->sys_offset); | 592 | ((unsigned long)mchk_header + mchk_header->sys_offset); |
593 | 593 | ||
594 | /* TODO - catagorize errors, for now, no error */ | 594 | /* TODO - categorize errors, for now, no error */ |
595 | 595 | ||
596 | if (!print) | 596 | if (!print) |
597 | return status; | 597 | return status; |
diff --git a/arch/alpha/kernel/osf_sys.c b/arch/alpha/kernel/osf_sys.c index ce857158c1ea..6413c5f23226 100644 --- a/arch/alpha/kernel/osf_sys.c +++ b/arch/alpha/kernel/osf_sys.c | |||
@@ -715,7 +715,7 @@ osf_setsysinfo(unsigned long op, void __user *buffer, unsigned long nbytes, | |||
715 | /* | 715 | /* |
716 | * Alpha Architecture Handbook 4.7.7.3: | 716 | * Alpha Architecture Handbook 4.7.7.3: |
717 | * To be fully IEEE compiant, we must track the current IEEE | 717 | * To be fully IEEE compiant, we must track the current IEEE |
718 | * exception state in software, because spurrious bits can be | 718 | * exception state in software, because spurious bits can be |
719 | * set in the trap shadow of a software-complete insn. | 719 | * set in the trap shadow of a software-complete insn. |
720 | */ | 720 | */ |
721 | 721 | ||
diff --git a/arch/alpha/kernel/smp.c b/arch/alpha/kernel/smp.c index ad176441be55..f4ab233201b2 100644 --- a/arch/alpha/kernel/smp.c +++ b/arch/alpha/kernel/smp.c | |||
@@ -439,7 +439,6 @@ setup_smp(void) | |||
439 | ((char *)cpubase + i*hwrpb->processor_size); | 439 | ((char *)cpubase + i*hwrpb->processor_size); |
440 | if ((cpu->flags & 0x1cc) == 0x1cc) { | 440 | if ((cpu->flags & 0x1cc) == 0x1cc) { |
441 | smp_num_probed++; | 441 | smp_num_probed++; |
442 | /* Assume here that "whami" == index */ | ||
443 | cpu_set(i, cpu_present_map); | 442 | cpu_set(i, cpu_present_map); |
444 | cpu->pal_revision = boot_cpu_palrev; | 443 | cpu->pal_revision = boot_cpu_palrev; |
445 | } | 444 | } |
diff --git a/arch/alpha/kernel/sys_alcor.c b/arch/alpha/kernel/sys_alcor.c index 49bedfbbd31b..d187d01d2a17 100644 --- a/arch/alpha/kernel/sys_alcor.c +++ b/arch/alpha/kernel/sys_alcor.c | |||
@@ -138,7 +138,7 @@ alcor_init_irq(void) | |||
138 | 138 | ||
139 | for (i = 16; i < 48; ++i) { | 139 | for (i = 16; i < 48; ++i) { |
140 | /* On Alcor, at least, lines 20..30 are not connected | 140 | /* On Alcor, at least, lines 20..30 are not connected |
141 | and can generate spurrious interrupts if we turn them | 141 | and can generate spurious interrupts if we turn them |
142 | on while IRQ probing. */ | 142 | on while IRQ probing. */ |
143 | if (i >= 16+20 && i <= 16+30) | 143 | if (i >= 16+20 && i <= 16+30) |
144 | continue; | 144 | continue; |
diff --git a/arch/alpha/kernel/sys_sio.c b/arch/alpha/kernel/sys_sio.c index 14b5a753aba5..ee7b9009ebb4 100644 --- a/arch/alpha/kernel/sys_sio.c +++ b/arch/alpha/kernel/sys_sio.c | |||
@@ -78,7 +78,7 @@ alphabook1_init_arch(void) | |||
78 | * example, sound boards seem to like using IRQ 9. | 78 | * example, sound boards seem to like using IRQ 9. |
79 | * | 79 | * |
80 | * This is NOT how we should do it. PIRQ0-X should have | 80 | * This is NOT how we should do it. PIRQ0-X should have |
81 | * their own IRQ's, the way intel uses the IO-APIC irq's. | 81 | * their own IRQs, the way intel uses the IO-APIC IRQs. |
82 | */ | 82 | */ |
83 | 83 | ||
84 | static void __init | 84 | static void __init |