Commit 67a5a59d authored by Helge Deller's avatar Helge Deller Committed by Kyle McMartin

[PARISC] Misc. janitorial work

Fix a spelling mistake, add a KERN_INFO flag, and fix some whitespace
uglies.
Signed-off-by: default avatarHelge Deller <deller@parisc-linux.org>
Signed-off-by: default avatarKyle McMartin <kyle@parisc-linux.org>
parent b2d6b9fb
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* License. See the file "COPYING" in the main directory of this archive * License. See the file "COPYING" in the main directory of this archive
* for more details. * for more details.
* *
* Copyright (C) 1999 Helge Deller (07-13-1999) * Copyright (C) 1999-2006 Helge Deller <deller@gmx.de> (07-13-1999)
* Copyright (C) 1999 SuSE GmbH Nuernberg * Copyright (C) 1999 SuSE GmbH Nuernberg
* Copyright (C) 2000 Philipp Rumpf (prumpf@tux.org) * Copyright (C) 2000 Philipp Rumpf (prumpf@tux.org)
* *
...@@ -358,5 +358,5 @@ void parisc_setup_cache_timing(void) ...@@ -358,5 +358,5 @@ void parisc_setup_cache_timing(void)
if (!parisc_cache_flush_threshold) if (!parisc_cache_flush_threshold)
parisc_cache_flush_threshold = FLUSH_THRESHOLD; parisc_cache_flush_threshold = FLUSH_THRESHOLD;
printk("Setting cache flush threshold to %x (%d CPUs online)\n", parisc_cache_flush_threshold, num_online_cpus()); printk(KERN_INFO "Setting cache flush threshold to %x (%d CPUs online)\n", parisc_cache_flush_threshold, num_online_cpus());
} }
...@@ -186,7 +186,7 @@ void do_page_fault(struct pt_regs *regs, unsigned long code, ...@@ -186,7 +186,7 @@ void do_page_fault(struct pt_regs *regs, unsigned long code,
break; break;
case VM_FAULT_SIGBUS: case VM_FAULT_SIGBUS:
/* /*
* We hit a hared mapping outside of the file, or some * We hit a shared mapping outside of the file, or some
* other thing happened to us that made us unable to * other thing happened to us that made us unable to
* handle the page fault gracefully. * handle the page fault gracefully.
*/ */
......
...@@ -535,7 +535,7 @@ pdcs_auto_read(struct subsystem *entry, char *buf, int knob) ...@@ -535,7 +535,7 @@ pdcs_auto_read(struct subsystem *entry, char *buf, int knob)
{ {
char *out = buf; char *out = buf;
struct pdcspath_entry *pathentry; struct pdcspath_entry *pathentry;
if (!entry || !buf) if (!entry || !buf)
return -EINVAL; return -EINVAL;
......
...@@ -155,7 +155,7 @@ superio_init(struct pci_dev *pcidev) ...@@ -155,7 +155,7 @@ superio_init(struct pci_dev *pcidev)
struct pci_dev *pdev = sio->lio_pdev; struct pci_dev *pdev = sio->lio_pdev;
u16 word; u16 word;
if (sio->suckyio_irq_enabled) if (sio->suckyio_irq_enabled)
return; return;
BUG_ON(!pdev); BUG_ON(!pdev);
...@@ -194,7 +194,7 @@ superio_init(struct pci_dev *pcidev) ...@@ -194,7 +194,7 @@ superio_init(struct pci_dev *pcidev)
request_region (sio->acpi_base, 0x1f, "acpi"); request_region (sio->acpi_base, 0x1f, "acpi");
/* Enable the legacy I/O function */ /* Enable the legacy I/O function */
pci_read_config_word (pdev, PCI_COMMAND, &word); pci_read_config_word (pdev, PCI_COMMAND, &word);
word |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY | PCI_COMMAND_IO; word |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY | PCI_COMMAND_IO;
pci_write_config_word (pdev, PCI_COMMAND, word); pci_write_config_word (pdev, PCI_COMMAND, word);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment