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_bge.c | |
parent | ed6eacbf8749cc005185039370dd6f5203959f2a (diff) |
- consistify cfdriver for the ethernet drivers (0 -> NULL)
ok dlg@
Diffstat (limited to 'sys/dev/pci/if_bge.c')
-rw-r--r-- | sys/dev/pci/if_bge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index 8f8986974f1..ca36f456a56 100644 --- a/sys/dev/pci/if_bge.c +++ b/sys/dev/pci/if_bge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bge.c,v 1.280 2009/08/09 11:40:56 deraadt Exp $ */ +/* $OpenBSD: if_bge.c,v 1.281 2009/08/13 14:24:47 jasper Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -133,7 +133,7 @@ struct cfattach bge_ca = { }; struct cfdriver bge_cd = { - 0, "bge", DV_IFNET + NULL, "bge", DV_IFNET }; void bge_txeof(struct bge_softc *); |