Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

PCI quirks: 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@redhat.com>
Cc: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Cc: Jeff Garzik <jeff@garzik.org>
Cc: Tejun Heo <htejun@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>

authored by

Adam Jackson and committed by
Jesse Barnes
999da9fd 92425a40

+1 -1
+1 -1
drivers/pci/quirks.c
··· 56 56 while ((d = pci_get_device(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371SB_0, d))) { 57 57 pci_read_config_byte(d, 0x82, &dlc); 58 58 if (!(dlc & 1<<1)) { 59 - dev_err(&d->dev, "PIIX3: Enabling Passive Release\n"); 59 + dev_info(&d->dev, "PIIX3: Enabling Passive Release\n"); 60 60 dlc |= 1<<1; 61 61 pci_write_config_byte(d, 0x82, dlc); 62 62 }