Commit 82900639 authored by Matt Domsch's avatar Matt Domsch Committed by Deepak Saxena

[PATCH] PCI: PCI devices with no PCI_CACHE_LINE_SIZE implemented

On Wed, May 05, 2004 at 03:31:02PM -0700, Greg KH wrote:
> On Thu, Apr 29, 2004 at 02:53:01PM -0500, Matt Domsch wrote:
> > a) need this be a warning, wouldn't KERN_DEBUG suffice, if a message
> > is needed at all?  This is printed in pci_generic_prep_mwi().
>
> Yes, we should make that KERN_DEBUG.  I don't have a problem with that.
> Care to make a patch?
parent ec778be8
......@@ -640,7 +640,7 @@ pci_generic_prep_mwi(struct pci_dev *dev)
if (cacheline_size == pci_cache_line_size)
return 0;
printk(KERN_WARNING "PCI: cache line size of %d is not supported "
printk(KERN_DEBUG "PCI: cache line size of %d is not supported "
"by device %s\n", pci_cache_line_size << 2, pci_name(dev));
return -EINVAL;
......
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