diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2007-12-10 21:51:02 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2007-12-10 21:51:02 +0000 |
commit | d8eafaf5b4cf4462d4adbd2251836d925a392679 (patch) | |
tree | 551ea23627070fb0a5a89ba750d6b6105b07d962 /sys/dev/pci/agp_i810.c | |
parent | e92e7510592dba3b58b7ed9ac5f36c6af66262b9 (diff) |
Make the "can't find VGA config space" error sound less scary. This
happens sometimes on intel PCI-E chipsets where integrated graphics
have been disabled.
ok kettenis, deraadt.
Diffstat (limited to 'sys/dev/pci/agp_i810.c')
-rw-r--r-- | sys/dev/pci/agp_i810.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/agp_i810.c b/sys/dev/pci/agp_i810.c index f23ea143f5b..4134a2b1068 100644 --- a/sys/dev/pci/agp_i810.c +++ b/sys/dev/pci/agp_i810.c @@ -1,4 +1,4 @@ -/* $OpenBSD: agp_i810.c,v 1.28 2007/12/09 18:21:14 kettenis Exp $ */ +/* $OpenBSD: agp_i810.c,v 1.29 2007/12/10 21:51:01 oga Exp $ */ /* $NetBSD: agp_i810.c,v 1.15 2003/01/31 00:07:39 thorpej Exp $ */ /*- @@ -174,7 +174,7 @@ agp_i810_attach(struct agp_softc *sc, struct pci_attach_args *pa) return (agp_intel_attach(sc, pa)); } #endif - printf("can't find internal VGA device config space\n"); + printf("no integrated graphics\n"); free(isc, M_AGP); return (ENOENT); } |