diff options
| author | Jody McIntyre <scjody@modernduck.com> | 2006-03-28 20:04:04 -0500 |
|---|---|---|
| committer | Jody McIntyre <scjody@modernduck.com> | 2006-03-28 20:04:04 -0500 |
| commit | 94c2d01a537daf51a9fcf229d7d2204c979355d9 (patch) | |
| tree | 9ef944f89559b8d5ac3edaac836334861fd07fbf | |
| parent | d024ebc67eaa6bb7abca2e3061cb257a1587fa30 (diff) | |
ohci1394: cleanup the "Unexpected PCI resource length" warning.
This warning happens in practice because the resource length reported by
the chipset is too large. This is not actually a problem, so don't warn
about it. If it happens to be too small, warn about that, but with
a different message so people who are used to ignoring the old message
don't.
Signed-off-by: Jody McIntyre <scjody@modernduck.com>
| -rw-r--r-- | drivers/ieee1394/ohci1394.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ieee1394/ohci1394.c b/drivers/ieee1394/ohci1394.c index 24d045c353e5..a86beeb6af5d 100644 --- a/drivers/ieee1394/ohci1394.c +++ b/drivers/ieee1394/ohci1394.c | |||
| @@ -3262,8 +3262,8 @@ static int __devinit ohci1394_pci_probe(struct pci_dev *dev, | |||
| 3262 | * fail to report the right length. Anyway, the ohci spec | 3262 | * fail to report the right length. Anyway, the ohci spec |
| 3263 | * clearly says it's 2kb, so this shouldn't be a problem. */ | 3263 | * clearly says it's 2kb, so this shouldn't be a problem. */ |
| 3264 | ohci_base = pci_resource_start(dev, 0); | 3264 | ohci_base = pci_resource_start(dev, 0); |
| 3265 | if (pci_resource_len(dev, 0) != OHCI1394_REGISTER_SIZE) | 3265 | if (pci_resource_len(dev, 0) < OHCI1394_REGISTER_SIZE) |
| 3266 | PRINT(KERN_WARNING, "Unexpected PCI resource length of %lx!", | 3266 | PRINT(KERN_WARNING, "PCI resource length of %lx too small!", |
| 3267 | pci_resource_len(dev, 0)); | 3267 | pci_resource_len(dev, 0)); |
| 3268 | 3268 | ||
| 3269 | /* Seems PCMCIA handles this internally. Not sure why. Seems | 3269 | /* Seems PCMCIA handles this internally. Not sure why. Seems |
