diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-11-07 14:49:03 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-11-07 14:49:03 +0000 |
commit | 05ea5cfbae200015db0fc343bfb527229a3c9338 (patch) | |
tree | 64116af8425b2acc036d0f8115b708278e019dfe /sys/dev/pci/isp_pci.c | |
parent | a65d95c199b8526c9b856b7d22803089a87d2740 (diff) |
Change sgi system identification from a single system type list, to a smaller
system type list (which really is the system family) and a subsystem type.
No functional change yet.
Diffstat (limited to 'sys/dev/pci/isp_pci.c')
-rw-r--r-- | sys/dev/pci/isp_pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/isp_pci.c b/sys/dev/pci/isp_pci.c index 5d38e65cdac..208c6800820 100644 --- a/sys/dev/pci/isp_pci.c +++ b/sys/dev/pci/isp_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isp_pci.c,v 1.52 2009/08/09 09:55:03 kettenis Exp $ */ +/* $OpenBSD: isp_pci.c,v 1.53 2009/11/07 14:49:02 miod Exp $ */ /* $FreeBSD: src/sys/dev/isp/isp_pci.c,v 1.148 2007/06/26 23:08:57 mjacob Exp $*/ /*- * Copyright (c) 1997-2006 by Matthew Jacob @@ -501,8 +501,8 @@ isp_pci_attach(struct device *parent, struct device *self, void *aux) * XXX other isp... */ if (sys_config.system_type == SGI_OCTANE || - sys_config.system_type == SGI_O200 || - sys_config.system_type == SGI_O300) + sys_config.system_type == SGI_IP27 || + sys_config.system_type == SGI_IP35) DEFAULT_IID(isp) = 0; #endif |