The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] PIIX3: Reduce passive release quirk message log level.
@ 2008-08-08 15:07 Adam Jackson
  0 siblings, 0 replies; only message in thread
From: Adam Jackson @ 2008-08-08 15:07 UTC (permalink / raw)
  To: linux-kernel; +Cc: Adam Jackson

Makes quiet boot in qemu really quiet.  All the other PCI quirk messages
are dev_info() already.

Signed-off-by: Adam Jackson <ajax@redhat.com>
---
 drivers/pci/quirks.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index 0fb3650..4f45f02 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -47,7 +47,7 @@ static void quirk_passive_release(struct pci_dev *dev)
 	while ((d = pci_get_device(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371SB_0, d))) {
 		pci_read_config_byte(d, 0x82, &dlc);
 		if (!(dlc & 1<<1)) {
-			dev_err(&d->dev, "PIIX3: Enabling Passive Release\n");
+			dev_info(&d->dev, "PIIX3: Enabling Passive Release\n");
 			dlc |= 1<<1;
 			pci_write_config_byte(d, 0x82, dlc);
 		}
-- 
1.5.6


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2008-08-08 15:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-08 15:07 [PATCH] PIIX3: Reduce passive release quirk message log level Adam Jackson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox