Author: hselasky
Date: Wed Mar 25 10:46:13 2015
New Revision: 280543
URL: https://svnweb.freebsd.org/changeset/base/280543

Log:
  MFC r280211:
  Add missing void pointer argument to SYSINIT() functions.
  
  Sponsored by:   Mellanox Technologies

Modified:
  stable/9/sys/ofed/include/linux/linux_compat.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/ofed/include/linux/linux_compat.c
==============================================================================
--- stable/9/sys/ofed/include/linux/linux_compat.c      Wed Mar 25 10:46:04 
2015        (r280542)
+++ stable/9/sys/ofed/include/linux/linux_compat.c      Wed Mar 25 10:46:13 
2015        (r280543)
@@ -687,7 +687,7 @@ vunmap(void *addr)
 }
 
 static void
-linux_compat_init(void)
+linux_compat_init(void *arg)
 {
        struct sysctl_oid *rootoid;
        int i;
@@ -717,7 +717,7 @@ linux_compat_init(void)
 SYSINIT(linux_compat, SI_SUB_DRIVERS, SI_ORDER_SECOND, linux_compat_init, 
NULL);
 
 static void
-linux_compat_uninit(void)
+linux_compat_uninit(void *arg)
 {
        kobject_kfree_name(&class_root);
        kobject_kfree_name(&linux_rootdev.kobj);
_______________________________________________
svn-src-stable-9@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-stable-9
To unsubscribe, send any mail to "svn-src-stable-9-unsubscr...@freebsd.org"

Reply via email to