svn commit: r258641 - head/sys/dev/usb/wlan

Hans Petter Selasky hselasky at FreeBSD.org
Tue Nov 26 10:53:12 UTC 2013


Author: hselasky
Date: Tue Nov 26 10:53:12 2013
New Revision: 258641
URL: http://svnweb.freebsd.org/changeset/base/258641

Log:
  Add missing static keyword.
  
  MFC after:	2 weeks

Modified:
  head/sys/dev/usb/wlan/if_run.c

Modified: head/sys/dev/usb/wlan/if_run.c
==============================================================================
--- head/sys/dev/usb/wlan/if_run.c	Tue Nov 26 10:48:08 2013	(r258640)
+++ head/sys/dev/usb/wlan/if_run.c	Tue Nov 26 10:53:12 2013	(r258641)
@@ -1062,7 +1062,7 @@ fail:
 	return (error);
 }
 
-int
+static int
 run_reset(struct run_softc *sc)
 {
 	usb_device_request_t req;
@@ -1465,7 +1465,7 @@ run_get_rf(uint16_t rev)
 	return ("unknown");
 }
 
-int
+static int
 run_read_eeprom(struct run_softc *sc)
 {
 	int8_t delta_2ghz, delta_5ghz;


More information about the svn-src-head mailing list