Author: ae
Date: Mon Dec 22 17:32:13 2014
New Revision: 276067
URL: https://svnweb.freebsd.org/changeset/base/276067

Log:
  MFC r258167:
    ANSIfy function defintions.

Modified:
  stable/10/sys/net/if_gif.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/net/if_gif.c
==============================================================================
--- stable/10/sys/net/if_gif.c  Mon Dec 22 17:04:51 2014        (r276066)
+++ stable/10/sys/net/if_gif.c  Mon Dec 22 17:32:13 2014        (r276067)
@@ -152,10 +152,7 @@ static const u_char etherbroadcastaddr[E
 #endif
 
 static int
-gif_clone_create(ifc, unit, params)
-       struct if_clone *ifc;
-       int unit;
-       caddr_t params;
+gif_clone_create(struct if_clone *ifc, int unit, caddr_t params)
 {
        struct gif_softc *sc;
 
@@ -199,8 +196,7 @@ gif_clone_create(ifc, unit, params)
 }
 
 static void
-gif_clone_destroy(ifp)
-       struct ifnet *ifp;
+gif_clone_destroy(struct ifnet *ifp)
 {
 #if defined(INET) || defined(INET6)
        int err;
@@ -246,10 +242,7 @@ VNET_SYSINIT(vnet_gif_init, SI_SUB_PSEUD
     NULL);
 
 static int
-gifmodevent(mod, type, data)
-       module_t mod;
-       int type;
-       void *data;
+gifmodevent(module_t mod, int type, void *data)
 {
 
        switch (type) {
@@ -279,11 +272,7 @@ DECLARE_MODULE(if_gif, gif_mod, SI_SUB_P
 MODULE_VERSION(if_gif, 1);
 
 int
-gif_encapcheck(m, off, proto, arg)
-       const struct mbuf *m;
-       int off;
-       int proto;
-       void *arg;
+gif_encapcheck(const struct mbuf *m, int off, int proto, void *arg)
 {
        struct ip ip;
        struct gif_softc *sc;
@@ -528,10 +517,7 @@ gif_output(struct ifnet *ifp, struct mbu
 }
 
 void
-gif_input(m, af, ifp)
-       struct mbuf *m;
-       int af;
-       struct ifnet *ifp;
+gif_input(struct mbuf *m, int af, struct ifnet *ifp)
 {
        int isr, n;
        struct gif_softc *sc;
@@ -669,10 +655,7 @@ gif_input(m, af, ifp)
 
 /* XXX how should we handle IPv6 scope on SIOC[GS]IFPHYADDR? */
 int
-gif_ioctl(ifp, cmd, data)
-       struct ifnet *ifp;
-       u_long cmd;
-       caddr_t data;
+gif_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
 {
        struct gif_softc *sc  = ifp->if_softc;
        struct ifreq     *ifr = (struct ifreq*)data;
@@ -949,10 +932,7 @@ gif_ioctl(ifp, cmd, data)
  * a mutex.
  */
 int
-gif_set_tunnel(ifp, src, dst)
-       struct ifnet *ifp;
-       struct sockaddr *src;
-       struct sockaddr *dst;
+gif_set_tunnel(struct ifnet *ifp, struct sockaddr *src, struct sockaddr *dst)
 {
        struct gif_softc *sc = ifp->if_softc;
        struct gif_softc *sc2;
@@ -1058,8 +1038,7 @@ gif_set_tunnel(ifp, src, dst)
 }
 
 void
-gif_delete_tunnel(ifp)
-       struct ifnet *ifp;
+gif_delete_tunnel(struct ifnet *ifp)
 {
        struct gif_softc *sc = ifp->if_softc;
 
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to