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/ulpt.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/ulpt.c')
| -rw-r--r-- | sys/dev/usb/ulpt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/ulpt.c b/sys/dev/usb/ulpt.c index 18b00a8d4b1..4658c2e1eb1 100644 --- a/sys/dev/usb/ulpt.c +++ b/sys/dev/usb/ulpt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ulpt.c,v 1.30 2007/06/11 16:30:31 mbalmer Exp $ */ +/* $OpenBSD: ulpt.c,v 1.31 2007/06/12 16:26:36 mbalmer Exp $ */ /* $NetBSD: ulpt.c,v 1.57 2003/01/05 10:19:42 scw Exp $ */ /* $FreeBSD: src/sys/dev/usb/ulpt.c,v 1.24 1999/11/17 22:33:44 n_hibma Exp $ */ @@ -298,7 +298,7 @@ ulpt_attach(struct device *parent, struct device *self, void *aux) } int -ulpt_activate(device_ptr_t self, enum devact act) +ulpt_activate(struct device *self, enum devact act) { struct ulpt_softc *sc = (struct ulpt_softc *)self; |
