diff options
author | 2007-06-12 16:26:36 +0000 | |
---|---|---|
committer | 2007-06-12 16:26:36 +0000 | |
commit | 7303018685d384bf9e330b12e17cfdd5cc1c71a0 (patch) | |
tree | 2547bb103eeef13d863f7a5f64ec2bde15854332 /sys/dev/usb/if_kue.c | |
parent | zap some dead AF_NS bits; ok henning (diff) | |
download | wireguard-openbsd-7303018685d384bf9e330b12e17cfdd5cc1c71a0.tar.xz wireguard-openbsd-7303018685d384bf9e330b12e17cfdd5cc1c71a0.zip |
Remove the definition and use of the device_ptr_t which was a struct device *.
No binary change.
ok mk.
Diffstat (limited to 'sys/dev/usb/if_kue.c')
-rw-r--r-- | sys/dev/usb/if_kue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_kue.c b/sys/dev/usb/if_kue.c index 45321dfa60e..42cb784e98a 100644 --- a/sys/dev/usb/if_kue.c +++ b/sys/dev/usb/if_kue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_kue.c,v 1.52 2007/06/10 14:49:00 mbalmer Exp $ */ +/* $OpenBSD: if_kue.c,v 1.53 2007/06/12 16:26:36 mbalmer Exp $ */ /* $NetBSD: if_kue.c,v 1.50 2002/07/16 22:00:31 augustss Exp $ */ /* * Copyright (c) 1997, 1998, 1999, 2000 @@ -581,7 +581,7 @@ kue_detach(struct device *self, int flags) } int -kue_activate(device_ptr_t self, enum devact act) +kue_activate(struct device *self, enum devact act) { struct kue_softc *sc = (struct kue_softc *)self; |