diff options
author | avg <avg@FreeBSD.org> | 2010-01-29 10:20:11 +0000 |
---|---|---|
committer | avg <avg@FreeBSD.org> | 2010-01-29 10:20:11 +0000 |
commit | 51117fa3d858fc5caf72c6c3abe8f56154d95aef (patch) | |
tree | 4c10f611a1757a45def6d69162525d77ec6f42c4 | |
parent | 773166a200b9dc94c438c806c5b7e6e9571f2421 (diff) | |
download | FreeBSD-src-51117fa3d858fc5caf72c6c3abe8f56154d95aef.zip FreeBSD-src-51117fa3d858fc5caf72c6c3abe8f56154d95aef.tar.gz |
add static qualifier to definition of a function already declared static
This is for improving code readibility only.
MFC after: 1 week
-rw-r--r-- | sys/amd64/amd64/msi.c | 2 | ||||
-rw-r--r-- | sys/i386/i386/msi.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/amd64/msi.c b/sys/amd64/amd64/msi.c index 91a8cbb..6745ce2 100644 --- a/sys/amd64/amd64/msi.c +++ b/sys/amd64/amd64/msi.c @@ -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; diff --git a/sys/i386/i386/msi.c b/sys/i386/i386/msi.c index 91a8cbb..6745ce2 100644 --- a/sys/i386/i386/msi.c +++ b/sys/i386/i386/msi.c @@ -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; |