aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/hv/Hv.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2009-07-29 09:04:51 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 12:01:52 -0700
commitbd1de709165a4f59878d4a272370fa228aa753f7 (patch)
treee4e112734f4632962790284721548c874bae0820 /drivers/staging/hv/Hv.c
parent0b3f683488aaf5f501dfa9758054a23b1b625e4f (diff)
Staging: hv: fix sparse static warnings
This fixes up all of the sparse warnings about static functions. Cc: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/Hv.c')
-rw-r--r--drivers/staging/hv/Hv.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/hv/Hv.c b/drivers/staging/hv/Hv.c
index 0883179cf84..c19c527f705 100644
--- a/drivers/staging/hv/Hv.c
+++ b/drivers/staging/hv/Hv.c
@@ -348,7 +348,7 @@ Description:
Cleanup routine. This routine is called normally during driver unloading or exiting.
--*/
-void
+static void
HvCleanup (
void
)
@@ -390,7 +390,7 @@ Description:
involves a hypercall.
--*/
-HV_STATUS
+static HV_STATUS
HvPostMessage(
HV_CONNECTION_ID connectionId,
HV_MESSAGE_TYPE messageType,
@@ -444,7 +444,7 @@ Description:
involves a hypercall.
--*/
-HV_STATUS
+static HV_STATUS
HvSignalEvent(
)
{
@@ -467,7 +467,7 @@ Description:
Otherwise, we create and initialize the message and event pages.
--*/
-int
+static int
HvSynicInit (
u32 irqVector
)
@@ -611,7 +611,7 @@ Description:
Cleanup routine for HvSynicInit().
--*/
-void
+static void
HvSynicCleanup(
void
)