PERFORCE change 118780 for review

Sepherosa Ziehau sephe at FreeBSD.org
Wed Apr 25 13:36:41 UTC 2007


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

Change 118780 by sephe at sephe_zealot:sam_wifi on 2007/04/25 13:35:53

	- Break long lines.
	- Fix comment typo.

Affected files ...

.. //depot/projects/wifi/sys/dev/usb/if_ural.c#22 edit

Differences ...

==== //depot/projects/wifi/sys/dev/usb/if_ural.c#22 (text+ko) ====

@@ -404,7 +404,8 @@
 			sc->sc_tx_no = ed->bEndpointAddress;
 	}
 	if (sc->sc_rx_no == -1 || sc->sc_tx_no == -1) {
-		printf("%s: missing endpoint\n", device_get_nameunit(sc->sc_dev));
+		printf("%s: missing endpoint\n",
+		    device_get_nameunit(sc->sc_dev));
 		USB_ATTACH_ERROR_RETURN;
 	}
 
@@ -423,11 +424,13 @@
 	ural_read_eeprom(sc);
 
 	printf("%s: MAC/BBP RT2570 (rev 0x%02x), RF %s\n",
-	    device_get_nameunit(sc->sc_dev), sc->asic_rev, ural_get_rf(sc->rf_rev));
+	    device_get_nameunit(sc->sc_dev), sc->asic_rev,
+	    ural_get_rf(sc->rf_rev));
 
 	ifp = sc->sc_ifp = if_alloc(IFT_ETHER);
 	if (ifp == NULL) {
-		printf("%s: can not if_alloc()\n", device_get_nameunit(sc->sc_dev));
+		printf("%s: can not if_alloc()\n",
+		    device_get_nameunit(sc->sc_dev));
 		USB_ATTACH_ERROR_RETURN;
 	}
 
@@ -456,7 +459,7 @@
 	    | IEEE80211_C_TXPMGT	/* tx power management */
 	    | IEEE80211_C_SHPREAMBLE	/* short preamble supported */
 	    | IEEE80211_C_SHSLOT	/* short slot time supported */
-	    | IEEE80211_C_BGSCAN	/* bg scanning supportd */
+	    | IEEE80211_C_BGSCAN	/* bg scanning supported */
 	    | IEEE80211_C_WPA		/* 802.11i */
 	    ;
 


More information about the p4-projects mailing list