add static qualifier to definition of a function already declared static

This is for improving code readibility only.

MFC after:	1 week
This commit is contained in:
Andriy Gapon 2010-01-29 10:20:11 +00:00
parent f3d3bf8731
commit c4d16d268f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=203160
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;