[PARISC] Misc. janitorial work

Fix a spelling mistake, add a KERN_INFO flag, and fix some whitespace
uglies.

Signed-off-by: Helge Deller <deller@parisc-linux.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>

authored by Helge Deller and committed by Kyle McMartin 67a5a59d b2d6b9fb

+6 -6
+2 -2
arch/parisc/kernel/cache.c
··· 4 4 * License. See the file "COPYING" in the main directory of this archive 5 5 * for more details. 6 6 * 7 - * Copyright (C) 1999 Helge Deller (07-13-1999) 7 + * Copyright (C) 1999-2006 Helge Deller <deller@gmx.de> (07-13-1999) 8 8 * Copyright (C) 1999 SuSE GmbH Nuernberg 9 9 * Copyright (C) 2000 Philipp Rumpf (prumpf@tux.org) 10 10 * ··· 358 358 if (!parisc_cache_flush_threshold) 359 359 parisc_cache_flush_threshold = FLUSH_THRESHOLD; 360 360 361 - printk("Setting cache flush threshold to %x (%d CPUs online)\n", parisc_cache_flush_threshold, num_online_cpus()); 361 + printk(KERN_INFO "Setting cache flush threshold to %x (%d CPUs online)\n", parisc_cache_flush_threshold, num_online_cpus()); 362 362 }
+1 -1
arch/parisc/mm/fault.c
··· 186 186 break; 187 187 case VM_FAULT_SIGBUS: 188 188 /* 189 - * We hit a hared mapping outside of the file, or some 189 + * We hit a shared mapping outside of the file, or some 190 190 * other thing happened to us that made us unable to 191 191 * handle the page fault gracefully. 192 192 */
+1 -1
drivers/parisc/pdc_stable.c
··· 535 535 { 536 536 char *out = buf; 537 537 struct pdcspath_entry *pathentry; 538 - 538 + 539 539 if (!entry || !buf) 540 540 return -EINVAL; 541 541
+2 -2
drivers/parisc/superio.c
··· 155 155 struct pci_dev *pdev = sio->lio_pdev; 156 156 u16 word; 157 157 158 - if (sio->suckyio_irq_enabled) 158 + if (sio->suckyio_irq_enabled) 159 159 return; 160 160 161 161 BUG_ON(!pdev); ··· 194 194 request_region (sio->acpi_base, 0x1f, "acpi"); 195 195 196 196 /* Enable the legacy I/O function */ 197 - pci_read_config_word (pdev, PCI_COMMAND, &word); 197 + pci_read_config_word (pdev, PCI_COMMAND, &word); 198 198 word |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY | PCI_COMMAND_IO; 199 199 pci_write_config_word (pdev, PCI_COMMAND, word); 200 200