diff options
author | Matthew Dempsky <matthew@cvs.openbsd.org> | 2010-06-29 07:12:32 +0000 |
---|---|---|
committer | Matthew Dempsky <matthew@cvs.openbsd.org> | 2010-06-29 07:12:32 +0000 |
commit | 88e6b4142f83ef8a11937a389ae675a7bc957253 (patch) | |
tree | 22e1408725ec516181d4d6c8ff0024bc1ec28b52 /sys/dev/usb/if_uath.c | |
parent | ff72e991ccf71c2f36657ae996b3fb8bd7ff9ddc (diff) |
Interface drivers should use DV_IFNET, not DV_DULL.
ok deraadt@
Diffstat (limited to 'sys/dev/usb/if_uath.c')
-rw-r--r-- | sys/dev/usb/if_uath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_uath.c b/sys/dev/usb/if_uath.c index 9cdbcda6640..f15a62650c5 100644 --- a/sys/dev/usb/if_uath.c +++ b/sys/dev/usb/if_uath.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_uath.c,v 1.41 2010/04/20 22:05:43 tedu Exp $ */ +/* $OpenBSD: if_uath.c,v 1.42 2010/06/29 07:12:31 matthew Exp $ */ /*- * Copyright (c) 2006 @@ -191,7 +191,7 @@ int uath_detach(struct device *, int); int uath_activate(struct device *, int); struct cfdriver uath_cd = { - NULL, "uath", DV_DULL + NULL, "uath", DV_IFNET }; const struct cfattach uath_ca = { |