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_bnx.c | |
parent | ed6eacbf8749cc005185039370dd6f5203959f2a (diff) |
- consistify cfdriver for the ethernet drivers (0 -> NULL)
ok dlg@
Diffstat (limited to 'sys/dev/pci/if_bnx.c')
-rw-r--r-- | sys/dev/pci/if_bnx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bnx.c b/sys/dev/pci/if_bnx.c index 3bf0151bdf1..06fc5dbe256 100644 --- a/sys/dev/pci/if_bnx.c +++ b/sys/dev/pci/if_bnx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bnx.c,v 1.83 2009/08/09 11:40:56 deraadt Exp $ */ +/* $OpenBSD: if_bnx.c,v 1.84 2009/08/13 14:24:47 jasper Exp $ */ /*- * Copyright (c) 2006 Broadcom Corporation @@ -403,7 +403,7 @@ struct cfattach bnx_ca = { }; struct cfdriver bnx_cd = { - 0, "bnx", DV_IFNET + NULL, "bnx", DV_IFNET }; /****************************************************************************/ |