diff options
author | Cedric Berger <cedric@cvs.openbsd.org> | 2003-12-15 23:36:15 +0000 |
---|---|---|
committer | Cedric Berger <cedric@cvs.openbsd.org> | 2003-12-15 23:36:15 +0000 |
commit | fa7b9e757ed2c0f7f1150747f3f1951fefa9298b (patch) | |
tree | 35a224c45b7bf0908f6e658c4628048ed4d1b247 /sys/dev/usb/if_aue.c | |
parent | 8a673a2d13b137f7b058efb43b043b8f21b00f35 (diff) |
Set devclass to DV_IFNET for all USB network drivers.
ok deraadt@ nate@
Diffstat (limited to 'sys/dev/usb/if_aue.c')
-rw-r--r-- | sys/dev/usb/if_aue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_aue.c b/sys/dev/usb/if_aue.c index 2acf5fb505f..967321784fa 100644 --- a/sys/dev/usb/if_aue.c +++ b/sys/dev/usb/if_aue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_aue.c,v 1.31 2003/05/17 17:48:32 nate Exp $ */ +/* $OpenBSD: if_aue.c,v 1.32 2003/12/15 23:36:14 cedric Exp $ */ /* $NetBSD: if_aue.c,v 1.82 2003/03/05 17:37:36 shiba Exp $ */ /* * Copyright (c) 1997, 1998, 1999, 2000 @@ -226,7 +226,7 @@ Static const struct aue_type aue_devs[] = { }; #define aue_lookup(v, p) ((struct aue_type *)usb_lookup(aue_devs, v, p)) -USB_DECLARE_DRIVER(aue); +USB_DECLARE_DRIVER_CLASS(aue, DV_IFNET); Static void aue_reset_pegasus_II(struct aue_softc *sc); Static int aue_tx_list_init(struct aue_softc *); |