Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Jan 2005 21:30:18 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 68769 for review
Message-ID:  <200501112130.j0BLUIcT009783@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=68769

Change 68769 by jhb@jhb_twclab on 2005/01/11 21:29:32

	Submit this hack that I have to carry around as a workaround for
	the broken BIOS on my quad xeon (it sets the IRQ for the mouse
	to 0 rather than 12).

Affected files ...

.. //depot/projects/smpng/sys/dev/acpica/acpi_resource.c#23 edit

Differences ...

==== //depot/projects/smpng/sys/dev/acpica/acpi_resource.c#23 (text+ko) ====

@@ -77,6 +77,12 @@
 	    req->counter++;
 	    break;
 	}
+	if (irq != rman_get_start(req->res && irq == 0)) {
+		if (bootverbose)
+			printf("IRQ is %u, resource is %lu\n", irq,
+			    rman_get_start(req->res));
+		return (AE_CTRL_TERMINATE);
+	}
 	req->found = 1;
 	KASSERT(irq == rman_get_start(req->res),
 	    ("IRQ resources do not match"));



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200501112130.j0BLUIcT009783>