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/tc | |
parent | ed6eacbf8749cc005185039370dd6f5203959f2a (diff) |
- consistify cfdriver for the ethernet drivers (0 -> NULL)
ok dlg@
Diffstat (limited to 'sys/dev/tc')
-rw-r--r-- | sys/dev/tc/if_fta.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/tc/if_fta.c b/sys/dev/tc/if_fta.c index d93fd60a1eb..c672e39bef1 100644 --- a/sys/dev/tc/if_fta.c +++ b/sys/dev/tc/if_fta.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_fta.c,v 1.15 2008/08/09 16:42:30 miod Exp $ */ +/* $OpenBSD: if_fta.c,v 1.16 2009/08/13 14:24:47 jasper Exp $ */ /* $NetBSD: if_fta.c,v 1.7 1996/10/22 21:37:26 cgd Exp $ */ /*- @@ -128,5 +128,5 @@ struct cfattach fta_ca = { }; struct cfdriver fta_cd = { - 0, "fta", DV_IFNET + NULL, "fta", DV_IFNET }; |