diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2008-07-01 11:02:45 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2008-07-01 11:02:45 +0000 |
commit | e00ac454017001ebda2a76e98c13144d661d86d0 (patch) | |
tree | 103551f600ce2fe705f89030bd97c8b8c27b1b21 /sys | |
parent | a1596272bc1444d738b1f0740952a89d69d9938d (diff) |
Spacing.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/uvideo.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/usb/uvideo.c b/sys/dev/usb/uvideo.c index 011efad5516..4ae8d1aa1b2 100644 --- a/sys/dev/usb/uvideo.c +++ b/sys/dev/usb/uvideo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvideo.c,v 1.43 2008/06/30 16:48:49 mglocker Exp $ */ +/* $OpenBSD: uvideo.c,v 1.44 2008/07/01 11:02:44 mglocker Exp $ */ /* * Copyright (c) 2008 Robert Nagy <robert@openbsd.org> @@ -294,7 +294,7 @@ uvideo_close(void *addr) } int -uvideo_match(struct device * parent, void *match, void *aux) +uvideo_match(struct device *parent, void *match, void *aux) { struct usb_attach_arg *uaa = aux; usb_interface_descriptor_t *id; @@ -314,7 +314,7 @@ uvideo_match(struct device * parent, void *match, void *aux) } void -uvideo_attach(struct device * parent, struct device * self, void *aux) +uvideo_attach(struct device *parent, struct device *self, void *aux) { struct uvideo_softc *sc = (struct uvideo_softc *) self; struct usb_attach_arg *uaa = aux; @@ -366,7 +366,7 @@ uvideo_attach(struct device * parent, struct device * self, void *aux) } int -uvideo_detach(struct device * self, int flags) +uvideo_detach(struct device *self, int flags) { struct uvideo_softc *sc = (struct uvideo_softc *)self; int rv = 0; @@ -385,10 +385,10 @@ uvideo_detach(struct device * self, int flags) } int -uvideo_activate(struct device * self, enum devact act) +uvideo_activate(struct device *self, enum devact act) { struct uvideo_softc *sc = (struct uvideo_softc *) self; - int rv = 0; + int rv = 0; DPRINTF(1, "uvideo_activate: sc=%p\n", sc); |