diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2006-03-12 17:29:50 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2006-03-12 17:29:50 +0000 |
commit | 703d58745a50a7540d45cc1879e118c126bb006e (patch) | |
tree | d066649cb70fdfa8217232320fd0b1f8943a512a /sys/dev/pci/if_pcn.c | |
parent | d77df7517e58d241712fd5e8e1534dd0f8b046be (diff) |
with pcn(4) now in place remove or replace the references to PCI le(4)
and complement pcn* at pci? where useful as request by brad@
ok brad@
Diffstat (limited to 'sys/dev/pci/if_pcn.c')
-rw-r--r-- | sys/dev/pci/if_pcn.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/pci/if_pcn.c b/sys/dev/pci/if_pcn.c index 54b6b56f0bd..1094047196f 100644 --- a/sys/dev/pci/if_pcn.c +++ b/sys/dev/pci/if_pcn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pcn.c,v 1.6 2006/02/22 18:12:24 brad Exp $ */ +/* $OpenBSD: if_pcn.c,v 1.7 2006/03/12 17:29:48 martin Exp $ */ /* $NetBSD: if_pcn.c,v 1.26 2005/05/07 09:15:44 is Exp $ */ /* @@ -524,8 +524,7 @@ pcn_match(struct device *parent, void *match, void *aux) switch (PCI_PRODUCT(pa->pa_id)) { case PCI_PRODUCT_AMD_PCNET_PCI: - /* Beat if_le_pci.c */ - return (10); + return (1); } return (0); |