diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-14 13:05:17 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-14 13:05:17 -0700 |
commit | 5a23f34798f15838fe1b7f0fd7e5be388e08c2b2 (patch) | |
tree | f8bafdde4ceb0eb4ab042c211fdfd89fe580f2a9 /drivers | |
parent | 0b175a7e68c2f51555820efb0a01681e3419c1bc (diff) |
Fix yenta error message when unable to find a bus assignment
And mention 'pci=assign-busses' as a possible fix.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pcmcia/yenta_socket.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pcmcia/yenta_socket.c b/drivers/pcmcia/yenta_socket.c index 2e43911b4876..ba4d78e5b121 100644 --- a/drivers/pcmcia/yenta_socket.c +++ b/drivers/pcmcia/yenta_socket.c @@ -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; } |