PERFORCE change 130349 for review

Hans Petter Selasky hselasky at FreeBSD.org
Thu Dec 6 06:58:56 PST 2007


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

Change 130349 by hselasky at hselasky_laptop001 on 2007/12/06 14:58:34

	
	Spell correction. 
	
	Substitute "MBps" by "Mbps".
	
	USB is fast, but not that fast ;-)

Affected files ...

.. //depot/projects/usb/src/sys/dev/usb/if_zyd.c#24 edit
.. //depot/projects/usb/src/sys/dev/usb/usb.c#26 edit

Differences ...

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

@@ -2063,7 +2063,7 @@
 	    IEEE80211_C_HOSTAP | IEEE80211_C_SHPREAMBLE | IEEE80211_C_PMGT |
 	    IEEE80211_C_TXPMGT | IEEE80211_C_WEP;
 
-	/* Rates are in 0,5 MBps units */
+	/* Rates are in 0,5 Mbps units */
 	ic->ic_sup_rates[IEEE80211_MODE_11B] = zyd_rateset_11b;
 	ic->ic_sup_rates[IEEE80211_MODE_11G] = zyd_rateset_11g;
 

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

@@ -312,22 +312,22 @@
 	switch (bus->usbrev) {
 	case USBREV_1_0:
 		speed = USB_SPEED_FULL;
-		device_printf(bus->bdev, "12MBps Full Speed USB v1.0\n");
+		device_printf(bus->bdev, "12Mbps Full Speed USB v1.0\n");
 		break;
 
 	case USBREV_1_1:
 		speed = USB_SPEED_FULL;
-		device_printf(bus->bdev, "12MBps Full Speed USB v1.1\n");
+		device_printf(bus->bdev, "12Mbps Full Speed USB v1.1\n");
 		break;
 
 	case USBREV_2_0:
 		speed = USB_SPEED_HIGH;
-		device_printf(bus->bdev, "480MBps High Speed USB v2.0\n");
+		device_printf(bus->bdev, "480Mbps High Speed USB v2.0\n");
 		break;
 
 	case USBREV_2_5:
 		speed = USB_SPEED_VARIABLE;
-		device_printf(bus->bdev, "480MBps Wireless USB v2.5\n");
+		device_printf(bus->bdev, "480Mbps Wireless USB v2.5\n");
 		break;
 
 	default:


More information about the p4-projects mailing list