svn commit: r290134 - head/sys/dev/ral

Kevin Lo kevlo at FreeBSD.org
Thu Oct 29 04:51:29 UTC 2015


Author: kevlo
Date: Thu Oct 29 04:51:27 2015
New Revision: 290134
URL: https://svnweb.freebsd.org/changeset/base/290134

Log:
  Remove the static function declaration.

Modified:
  head/sys/dev/ral/rt2860.c

Modified: head/sys/dev/ral/rt2860.c
==============================================================================
--- head/sys/dev/ral/rt2860.c	Thu Oct 29 04:21:34 2015	(r290133)
+++ head/sys/dev/ral/rt2860.c	Thu Oct 29 04:51:27 2015	(r290134)
@@ -115,7 +115,6 @@ static void	rt2860_tx_intr(struct rt2860
 static void	rt2860_rx_intr(struct rt2860_softc *);
 static void	rt2860_tbtt_intr(struct rt2860_softc *);
 static void	rt2860_gp_intr(struct rt2860_softc *);
-static void	rt2860_intr(void *);
 static int	rt2860_tx(struct rt2860_softc *, struct mbuf *,
 		    struct ieee80211_node *);
 static int	rt2860_raw_xmit(struct ieee80211_node *, struct mbuf *,
@@ -1387,7 +1386,7 @@ rt2860_gp_intr(struct rt2860_softc *sc)
 		rt2860_updatestats(sc);
 }
 
-static void
+void
 rt2860_intr(void *arg)
 {
 	struct rt2860_softc *sc = arg;


More information about the svn-src-all mailing list