diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-14 16:05:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-14 16:05:17 -0400 |
commit | 5a23f34798f15838fe1b7f0fd7e5be388e08c2b2 (patch) | |
tree | f8bafdde4ceb0eb4ab042c211fdfd89fe580f2a9 /drivers/pcmcia/yenta_socket.c | |
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/pcmcia/yenta_socket.c')
-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 | |||
1052 | * Bail out if so. | 1052 | * Bail out if so. |
1053 | */ | 1053 | */ |
1054 | if (!dev->subordinate) { | 1054 | if (!dev->subordinate) { |
1055 | printk(KERN_ERROR "Yenta: no bus associated with %s!\n", | 1055 | printk(KERN_ERR "Yenta: no bus associated with %s! " |
1056 | pci_name(dev)); | 1056 | "(try 'pci=assign-busses')\n", pci_name(dev)); |
1057 | return -ENODEV; | 1057 | return -ENODEV; |
1058 | } | 1058 | } |
1059 | 1059 | ||