diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-07-16 22:31:16 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-07-16 22:31:16 +0000 |
commit | d8683ba125e75609c811ff26b7cb140871249970 (patch) | |
tree | 352d09ab76a8d1fa84400c386e818481754d61e3 /sys/arch | |
parent | c3ec84bcc9513e5f06af244ac1cf61b29784aec1 (diff) |
Enable jfb-style acceleration on XVR-600.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sparc64/dev/ifb.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/ifb.c b/sys/arch/sparc64/dev/ifb.c index 366195b0adf..16b5e44698d 100644 --- a/sys/arch/sparc64/dev/ifb.c +++ b/sys/arch/sparc64/dev/ifb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ifb.c,v 1.20 2013/07/15 18:28:46 miod Exp $ */ +/* $OpenBSD: ifb.c,v 1.21 2013/07/16 22:31:15 miod Exp $ */ /* * Copyright (c) 2007, 2008, 2009 Miodrag Vallat. @@ -536,7 +536,10 @@ ifb_accel_identify(const char *name) if (strcmp(name, "SUNW,XVR-1200") == 0) return IFB_ACCEL_JFB; /* jfb */ - /* XVR-500 is bobcat, XVR-600 is xvr600 */ + if (strcmp(name, "SUNW,XVR-600") == 0) + return IFB_ACCEL_JFB; /* xvr600 */ + + /* XVR-500 is bobcat */ return IFB_ACCEL_NONE; } |