diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-05-10 23:34:02 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-05-10 23:34:02 +0000 |
commit | 9baaa82de58064cf02108c2e5116c6fbca2b1b4d (patch) | |
tree | 682d5558e2945c04477b24561f372fe3154f7712 | |
parent | 38bf752f89e0ad59c9adef04a0340e68b849798a (diff) |
Simplify probe routine.
-rw-r--r-- | sys/dev/pci/if_sis.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/pci/if_sis.c b/sys/dev/pci/if_sis.c index de631e335c0..669a23b9743 100644 --- a/sys/dev/pci/if_sis.c +++ b/sys/dev/pci/if_sis.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_sis.c,v 1.12 2001/03/14 15:17:31 aaron Exp $ */ +/* $OpenBSD: if_sis.c,v 1.13 2001/05/10 23:34:01 aaron Exp $ */ /* * Copyright (c) 1997, 1998, 1999 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved. @@ -601,9 +601,7 @@ int sis_probe(parent, match, aux) switch (PCI_PRODUCT(pa->pa_id)) { case PCI_PRODUCT_SIS_900: - return(1); case PCI_PRODUCT_SIS_7016: - return(1); case PCI_PRODUCT_NS_DP83815: return(1); } |