Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -1052,8 +1052,8 @@ static int __devinit yenta_probe (struct pci_dev *dev, const struct pci_device_i
	 * Bail out if so.
	 * Bail out if so.
	 */
	 */
	if (!dev->subordinate) {
	if (!dev->subordinate) {
		printk(KERN_ERROR "Yenta: no bus associated with %s!\n",
		printk(KERN_ERR "Yenta: no bus associated with %s! "
			pci_name(dev));
			"(try 'pci=assign-busses')\n", pci_name(dev));
		return -ENODEV;
		return -ENODEV;
	}
	}