[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1222711826-891-1-git-send-email-ajax@redhat.com>
Date: Mon, 29 Sep 2008 14:10:26 -0400
From: Adam Jackson <ajax@...hat.com>
To: linux-kernel@...r.kernel.org
Cc: Adam Jackson <ajax@...hat.com>
Subject: [PATCH] PIIX3: Warn softer about enabling passive release.
All the other quirks are dev_info() not dev_err(), this one isn't
special. This makes 'quiet' boot in qemu really quiet.
Signed-off-by: Adam Jackson <ajax@...hat.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 9236e7f..a299724 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.6.0.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists