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/NEWS | 3 +++ mdk-stage1/pcmcia/probe.c | 2 ++ 2 files changed, 5 insertions(+) (limited to 'mdk-stage1') diff --git a/mdk-stage1/NEWS b/mdk-stage1/NEWS index fd9689389..fd6e5e3f4 100644 --- a/mdk-stage1/NEWS +++ b/mdk-stage1/NEWS @@ -1,3 +1,6 @@ +- do not attempt to perform ISA probe for PCMCIA controller on x86_64 + as it fails with kvm_amd (#1156) + 1.49: - use new libldetect API for finding out unknown devices - handle more PCMCIA controllers 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