diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-05-03 00:04:27 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-05-03 00:04:27 +0000 |
commit | 78cf180a5a9e2468faefa282c8f9fc1e09fb8e75 (patch) | |
tree | dc046a144736ea10f8f63ff23268c8d0b1ee0f00 /sys/arch/alpha/tc/tcasic.c | |
parent | cedaa281b76bb3b475ba975fb217536f1e778e02 (diff) |
Need a dummy tc_fb_cnattach() until we have real fb support on
TURBOchannel machines.
Diffstat (limited to 'sys/arch/alpha/tc/tcasic.c')
-rw-r--r-- | sys/arch/alpha/tc/tcasic.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/arch/alpha/tc/tcasic.c b/sys/arch/alpha/tc/tcasic.c index 770e5854283..1875007363d 100644 --- a/sys/arch/alpha/tc/tcasic.c +++ b/sys/arch/alpha/tc/tcasic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcasic.c,v 1.11 2002/05/02 23:45:44 miod Exp $ */ +/* $OpenBSD: tcasic.c,v 1.12 2002/05/03 00:04:26 millert Exp $ */ /* $NetBSD: tcasic.c,v 1.36 2001/08/23 01:16:52 nisimura Exp $ */ /* @@ -244,4 +244,12 @@ tc_fb_cnattach(tcaddr) } #endif /* if NWSDISPLAY > 0 */ +#else + +int +tc_fb_cnattach(tcaddr) + tc_addr_t tcaddr; +{ + return (ENXIO); +} #endif |