summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwain Ainsworth <oga@cvs.openbsd.org>2008-08-02 15:50:35 +0000
committerOwain Ainsworth <oga@cvs.openbsd.org>2008-08-02 15:50:35 +0000
commite5b123605d8b38b9247521fb5fde5f7f4b9f88d3 (patch)
tree5f6b12533b05b771ec8d780bc8fc4f5f5ecb9f22
parentba2b02e7ad57de1371c81926430df0b4214de346 (diff)
make the drm unsupported printf more in line with how the rest of them
work. ok deraadt@
-rw-r--r--sys/dev/pci/vga_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/vga_pci.c b/sys/dev/pci/vga_pci.c
index 7d4413c86b5..d006c9529c1 100644
--- a/sys/dev/pci/vga_pci.c
+++ b/sys/dev/pci/vga_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vga_pci.c,v 1.34 2008/07/12 17:31:06 oga Exp $ */
+/* $OpenBSD: vga_pci.c,v 1.35 2008/08/02 15:50:34 oga Exp $ */
/* $NetBSD: vga_pci.c,v 1.3 1998/06/08 06:55:58 thorpej Exp $ */
/*
@@ -258,7 +258,7 @@ int
vga_drm_print(void *aux, const char *pnp)
{
if (pnp)
- printf("direct rendering for %s", pnp);
+ printf("drm at %s", pnp);
return (UNSUPP);
}
#endif