Commit 5a23f347 authored by Linus Torvalds's avatar Linus Torvalds

Fix yenta error message when unable to find a bus assignment

And mention 'pci=assign-busses' as a possible fix.
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 0b175a7e
......@@ -1052,8 +1052,8 @@ static int __devinit yenta_probe (struct pci_dev *dev, const struct pci_device_i
* Bail out if so.
*/
if (!dev->subordinate) {
printk(KERN_ERROR "Yenta: no bus associated with %s!\n",
pci_name(dev));
printk(KERN_ERR "Yenta: no bus associated with %s! "
"(try 'pci=assign-busses')\n", pci_name(dev));
return -ENODEV;
}
......
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