diff options
author | Len Brown <len.brown@intel.com> | 2006-06-26 23:04:31 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2006-06-27 00:00:54 -0400 |
commit | cece92969762b8ed7930d4e23008b76b06411dee (patch) | |
tree | ab3d84b71971f0405ab2b1b36d9fdd39b0bda55e /drivers/acpi/pci_irq.c | |
parent | 64dedfb8fdbbc4fabb8c131e4b597cd4bc7f3881 (diff) |
ACPI: un-export ACPI_WARNING() -- use printk(KERN_WARNING...)
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/pci_irq.c')
-rw-r--r-- | drivers/acpi/pci_irq.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/acpi/pci_irq.c b/drivers/acpi/pci_irq.c index 4cabc51246de..9010653a3823 100644 --- a/drivers/acpi/pci_irq.c +++ b/drivers/acpi/pci_irq.c | |||
@@ -269,8 +269,8 @@ acpi_pci_allocate_irq(struct acpi_prt_entry *entry, | |||
269 | entry->link.index, triggering, | 269 | entry->link.index, triggering, |
270 | polarity, link); | 270 | polarity, link); |
271 | if (irq < 0) { | 271 | if (irq < 0) { |
272 | ACPI_WARNING((AE_INFO, | 272 | printk(KERN_WARNING PREFIX |
273 | "Invalid IRQ link routing entry")); | 273 | "Invalid IRQ link routing entry\n"); |
274 | return_VALUE(-1); | 274 | return_VALUE(-1); |
275 | } | 275 | } |
276 | } else { | 276 | } else { |
@@ -379,8 +379,8 @@ acpi_pci_irq_derive(struct pci_dev *dev, | |||
379 | } | 379 | } |
380 | 380 | ||
381 | if (irq < 0) { | 381 | if (irq < 0) { |
382 | ACPI_WARNING((AE_INFO, "Unable to derive IRQ for device %s", | 382 | printk(KERN_WARNING PREFIX "Unable to derive IRQ for device %s\n", |
383 | pci_name(dev))); | 383 | pci_name(dev)); |
384 | return_VALUE(-1); | 384 | return_VALUE(-1); |
385 | } | 385 | } |
386 | 386 | ||