Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Dec 2007 16:07:40 GMT
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 132115 for review
Message-ID:  <200712301607.lBUG7eg6028350@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=132115

Change 132115 by hselasky@hselasky_laptop001 on 2007/12/30 16:06:54

	
	Prefix function name by "uchcom".
	
	The "uchcom" driver is now ready for testing!

Affected files ...

.. //depot/projects/usb/src/sys/dev/usb/uchcom.c#20 edit

Differences ...

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

@@ -214,7 +214,7 @@
 
 static void uchcom_update_version(struct uchcom_softc *sc);
 static void uchcom_convert_status(struct uchcom_softc *sc, uint8_t cur);
-static void update_status(struct uchcom_softc *sc);
+static void uchcom_update_status(struct uchcom_softc *sc);
 static void uchcom_set_dtrrts(struct uchcom_softc *sc);
 static int uchcom_calc_divider_settings(struct uchcom_divider *dp, uint32_t rate);
 static void uchcom_set_dte_rate(struct uchcom_softc *sc, uint32_t rate);
@@ -380,7 +380,7 @@
 	uchcom_update_version(sc);
 	uchcom_clear_chip(sc);
 	uchcom_reset_chip(sc);
-	update_status(sc);
+	uchcom_update_status(sc);
 
 	sc->sc_dtr = 1;
 	sc->sc_rts = 1;
@@ -574,7 +574,7 @@
 }
 
 static void
-update_status(struct uchcom_softc *sc)
+uchcom_update_status(struct uchcom_softc *sc)
 {
 	uint8_t cur;
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200712301607.lBUG7eg6028350>