diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2009-08-13 14:24:48 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2009-08-13 14:24:48 +0000 |
commit | bbd11eae68c0d21f37ab95e90d6d5f79baef57fc (patch) | |
tree | 46a21feefb659c783eafae8caed12b8fb852417e /sys/dev/pci/if_txp.c | |
parent | ed6eacbf8749cc005185039370dd6f5203959f2a (diff) |
- consistify cfdriver for the ethernet drivers (0 -> NULL)
ok dlg@
Diffstat (limited to 'sys/dev/pci/if_txp.c')
-rw-r--r-- | sys/dev/pci/if_txp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_txp.c b/sys/dev/pci/if_txp.c index e35f0dbd709..be4333bc477 100644 --- a/sys/dev/pci/if_txp.c +++ b/sys/dev/pci/if_txp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_txp.c,v 1.100 2009/03/24 11:12:10 kettenis Exp $ */ +/* $OpenBSD: if_txp.c,v 1.101 2009/08/13 14:24:47 jasper Exp $ */ /* * Copyright (c) 2001 @@ -133,7 +133,7 @@ struct cfattach txp_ca = { }; struct cfdriver txp_cd = { - 0, "txp", DV_IFNET + NULL, "txp", DV_IFNET }; const struct pci_matchid txp_devices[] = { |