Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Mar 2015 10:44:09 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r280540 - stable/10/sys/ofed/include/linux
Message-ID:  <201503251044.t2PAi97X093995@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hselasky
Date: Wed Mar 25 10:44:09 2015
New Revision: 280540
URL: https://svnweb.freebsd.org/changeset/base/280540

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

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

Modified: stable/10/sys/ofed/include/linux/linux_compat.c
==============================================================================
--- stable/10/sys/ofed/include/linux/linux_compat.c	Wed Mar 25 10:43:06 2015	(r280539)
+++ stable/10/sys/ofed/include/linux/linux_compat.c	Wed Mar 25 10:44:09 2015	(r280540)
@@ -689,7 +689,7 @@ vunmap(void *addr)
 }
 
 static void
-linux_compat_init(void)
+linux_compat_init(void *arg)
 {
 	struct sysctl_oid *rootoid;
 	int i;
@@ -719,7 +719,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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503251044.t2PAi97X093995>