Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Feb 2010 12:17:20 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r203545 - in stable/8/sys: amd64/amd64 i386/i386
Message-ID:  <201002061217.o16CHKof021399@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: avg
Date: Sat Feb  6 12:17:20 2010
New Revision: 203545
URL: http://svn.freebsd.org/changeset/base/203545

Log:
  MFC r203160: add static qualifier to definition of a static function

Modified:
  stable/8/sys/amd64/amd64/msi.c
  stable/8/sys/i386/i386/msi.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/amd64/amd64/msi.c
==============================================================================
--- stable/8/sys/amd64/amd64/msi.c	Sat Feb  6 12:03:25 2010	(r203544)
+++ stable/8/sys/amd64/amd64/msi.c	Sat Feb  6 12:17:20 2010	(r203545)
@@ -288,7 +288,7 @@ msi_init(void)
 	mtx_init(&msi_lock, "msi", NULL, MTX_DEF);
 }
 
-void
+static void
 msi_create_source(void)
 {
 	struct msi_intsrc *msi;

Modified: stable/8/sys/i386/i386/msi.c
==============================================================================
--- stable/8/sys/i386/i386/msi.c	Sat Feb  6 12:03:25 2010	(r203544)
+++ stable/8/sys/i386/i386/msi.c	Sat Feb  6 12:17:20 2010	(r203545)
@@ -288,7 +288,7 @@ msi_init(void)
 	mtx_init(&msi_lock, "msi", NULL, MTX_DEF);
 }
 
-void
+static void
 msi_create_source(void)
 {
 	struct msi_intsrc *msi;



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