aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/hv/StorVsc.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/StorVsc.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/StorVsc.c')
-rw-r--r--drivers/staging/hv/StorVsc.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/staging/hv/StorVsc.c b/drivers/staging/hv/StorVsc.c
index 5955999f57c..1c82e7923ff 100644
--- a/drivers/staging/hv/StorVsc.c
+++ b/drivers/staging/hv/StorVsc.c
@@ -315,7 +315,7 @@ Description:
Callback when the device belonging to this driver is added
--*/
-int
+static int
StorVscOnDeviceAdd(
struct hv_device *Device,
void *AdditionalInfo
@@ -527,7 +527,7 @@ Cleanup:
}
-int
+static int
StorVscConnectToVsp(
struct hv_device *Device
)
@@ -572,7 +572,7 @@ Description:
Callback when the our device is being removed
--*/
-int
+static int
StorVscOnDeviceRemove(
struct hv_device *Device
)
@@ -631,7 +631,7 @@ DPRINT_EXIT(STORVSC);
}
*********** */
-int
+static int
StorVscOnHostReset(
struct hv_device *Device
)
@@ -701,7 +701,7 @@ Description:
Callback to initiate an I/O request
--*/
-int
+static int
StorVscOnIORequest(
struct hv_device *Device,
struct hv_storvsc_request *Request
@@ -805,7 +805,7 @@ Description:
Perform any cleanup when the driver is removed
--*/
-void
+static void
StorVscOnCleanup(
struct hv_driver *Driver
)
@@ -919,7 +919,7 @@ StorVscOnReceive(
}
}
-void
+static void
StorVscOnChannelCallback(
void * Context
)