Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Mar 2015 10:50:11 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r280211 - head/sys/ofed/include/linux
Message-ID:  <201503181050.t2IAoBAV096447@svn.freebsd.org>

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

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

Modified:
  head/sys/ofed/include/linux/linux_compat.c

Modified: head/sys/ofed/include/linux/linux_compat.c
==============================================================================
--- head/sys/ofed/include/linux/linux_compat.c	Wed Mar 18 10:49:17 2015	(r280210)
+++ head/sys/ofed/include/linux/linux_compat.c	Wed Mar 18 10:50:10 2015	(r280211)
@@ -782,7 +782,7 @@ linux_timer_init(void *arg)
 SYSINIT(linux_timer, SI_SUB_DRIVERS, SI_ORDER_FIRST, linux_timer_init, NULL);
 
 static void
-linux_compat_init(void)
+linux_compat_init(void *arg)
 {
 	struct sysctl_oid *rootoid;
 	int i;
@@ -811,7 +811,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?201503181050.t2IAoBAV096447>