aboutsummaryrefslogtreecommitdiff
path: root/drivers/pcmcia
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2005-09-14 13:05:17 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2005-09-14 13:05:17 -0700
commit5a23f34798f15838fe1b7f0fd7e5be388e08c2b2 (patch)
treef8bafdde4ceb0eb4ab042c211fdfd89fe580f2a9 /drivers/pcmcia
parent0b175a7e68c2f51555820efb0a01681e3419c1bc (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/pcmcia')
-rw-r--r--drivers/pcmcia/yenta_socket.c4
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;
}