diff options
author | 2007-12-10 21:51:01 +0000 | |
---|---|---|
committer | 2007-12-10 21:51:01 +0000 | |
commit | 43f549f16c2da05b13f08ca87be2f2e59c7edfff (patch) | |
tree | c08caea68faab4acb538cad055b0d979ac972c3f | |
parent | Warn the user when reloading a new configuration fails instead of killing (diff) | |
download | wireguard-openbsd-43f549f16c2da05b13f08ca87be2f2e59c7edfff.tar.xz wireguard-openbsd-43f549f16c2da05b13f08ca87be2f2e59c7edfff.zip |
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.
-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); } |