diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-12-29 22:07:36 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-12-29 22:07:36 +0000 |
commit | 6cf412815cc5de091b6398fe891cff923cbdafed (patch) | |
tree | 94a06ca9c146dec73e87cd4d6e02ffb12e229a73 /sys/arch/sparc64/include | |
parent | 3c442b8516cef6bae47d46af74f117104b33ef7c (diff) |
Move ifb identification to its own routine. We can not simply have the ifb
probe win over vgafb, since one may configure a kernel with vgafb but without
ifb (especially slackers who forget to rerun config).
Diffstat (limited to 'sys/arch/sparc64/include')
-rw-r--r-- | sys/arch/sparc64/include/fbvar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sparc64/include/fbvar.h b/sys/arch/sparc64/include/fbvar.h index aadb7339ac3..f1a46869afe 100644 --- a/sys/arch/sparc64/include/fbvar.h +++ b/sys/arch/sparc64/include/fbvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: fbvar.h,v 1.7 2008/12/27 17:23:03 miod Exp $ */ +/* $OpenBSD: fbvar.h,v 1.8 2008/12/29 22:07:35 miod Exp $ */ /* $NetBSD: fbvar.h,v 1.9 1997/07/07 23:31:30 pk Exp $ */ /* @@ -76,3 +76,5 @@ void fbwscons_console_init(struct sunfb *, int); void fbwscons_setcolormap(struct sunfb *, void (*)(void *, u_int, u_int8_t, u_int8_t, u_int8_t)); void fbwscons_attach(struct sunfb *, struct wsdisplay_accessops *, int); + +int ifb_ident(void *); |