From caa36150d1c9ea29c66dd1c88fceb120090efcbd Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 19 May 2011 01:03:13 +0000 Subject: (pcmcia_probe) do not attempt to perform ISA probe for PCMCIA controller on x86_64 as it fails with kvm_amd (#1156) --- mdk-stage1/pcmcia/probe.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mdk-stage1/pcmcia') diff --git a/mdk-stage1/pcmcia/probe.c b/mdk-stage1/pcmcia/probe.c index 6aab709ec..622d898f5 100644 --- a/mdk-stage1/pcmcia/probe.c +++ b/mdk-stage1/pcmcia/probe.c @@ -520,10 +520,12 @@ char * pcmcia_probe(void) { if (!pci_probe()) return driver; +#if !defined(__x86_64__) else if (!i365_probe()) return "pd6729"; else if (!tcic_probe()) return "tcic"; +#endif else return NULL; } -- cgit v1.2.1