PERFORCE change 139870 for review

Hans Petter Selasky hselasky at FreeBSD.org
Sat Apr 12 10:11:41 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=139870

Change 139870 by hselasky at hselasky_laptop001 on 2008/04/12 10:10:52

	
	Style change: Prototypes should be in one line.

Affected files ...

.. //depot/projects/usb/src/sys/dev/usb/ugen.c#41 edit

Differences ...

==== //depot/projects/usb/src/sys/dev/usb/ugen.c#41 (text+ko) ====

@@ -146,23 +146,12 @@
 static usbd_callback_t ugenisoc_read_callback;
 static usbd_callback_t ugenisoc_write_callback;
 
-static void
-	ugen_make_devnodes(struct ugen_softc *sc);
-
-static void
-	ugen_destroy_devnodes(struct ugen_softc *sc, int skip_first);
-
-static int
-	ugen_set_config(struct ugen_softc *sc, int configno);
-
-static int
-	ugen_set_interface(struct ugen_softc *sc, int ifaceidx, int altno);
-
-static usb_config_descriptor_t *
-	ugen_get_cdesc(struct usbd_device *udev, int index, int *lenp);
-
-static int
-	ugen_get_alt_index(struct usbd_device *udev, int ifaceidx);
+static void ugen_make_devnodes(struct ugen_softc *sc);
+static void ugen_destroy_devnodes(struct ugen_softc *sc, int skip_first);
+static int ugen_set_config(struct ugen_softc *sc, int configno);
+static int ugen_set_interface(struct ugen_softc *sc, int ifaceidx, int altno);
+static usb_config_descriptor_t *ugen_get_cdesc(struct usbd_device *udev, int index, int *lenp);
+static int ugen_get_alt_index(struct usbd_device *udev, int ifaceidx);
 
 #define	UGENMINOR(unit, endpoint) (((unit) << 4) | (endpoint))
 


More information about the p4-projects mailing list