summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2015-12-19 11:23:36 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2015-12-19 11:23:36 +0000
commitb154f13e2153238abfe46911c7aa92a679ff505f (patch)
tree202dd6d9303e9791e937991054a8bc8de4c7e5e0 /sys
parent4c2727996705e64f00782bc5750444dc1fca824e (diff)
Do not match Uninorth bridges until we have a working KMS with AGP
support for G4 machines. This allows us to enable agp(4) again for G5 machines. ok kettenis@
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/agp_apple.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/agp_apple.c b/sys/dev/pci/agp_apple.c
index 8f6f24f21b6..69aa7806037 100644
--- a/sys/dev/pci/agp_apple.c
+++ b/sys/dev/pci/agp_apple.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: agp_apple.c,v 1.5 2014/03/29 18:09:30 guenther Exp $ */
+/* $OpenBSD: agp_apple.c,v 1.6 2015/12/19 11:23:35 mpi Exp $ */
/*
* Copyright (c) 2012 Martin Pieuchot <mpi@openbsd.org>
@@ -81,6 +81,8 @@ agp_apple_match(struct device *parent, void *match, void *aux)
case PCI_PRODUCT_APPLE_UNINORTH2_AGP:
case PCI_PRODUCT_APPLE_UNINORTH_AGP3:
case PCI_PRODUCT_APPLE_INTREPID2_AGP:
+ /* XXX until KMS works with these bridges */
+ return (0);
case PCI_PRODUCT_APPLE_U3_AGP:
case PCI_PRODUCT_APPLE_U3L_AGP:
case PCI_PRODUCT_APPLE_K2_AGP: