summaryrefslogtreecommitdiff
path: root/drivers/staging/hv/Channel.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2009-07-14 22:05:36 (GMT)
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 19:01:45 (GMT)
commit2be1301b7dafe5c1d081607377291d4274b40d66 (patch)
treef37cbe1a4c29792233b67875a407c6f0aa102cd9 /drivers/staging/hv/Channel.h
parent621d7fb7597e8cc2e24e6b0ca67118b452675d90 (diff)
downloadlinux-fsl-qoriq-2be1301b7dafe5c1d081607377291d4274b40d66.tar.xz
Staging: hv: remove INTERNAL typedef
The INTERNAL typedef is now removed from the Hyper-V driver code. Cc: Hank Janssen <hjanssen@microsoft.com> Cc: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/Channel.h')
-rw-r--r--drivers/staging/hv/Channel.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/staging/hv/Channel.h b/drivers/staging/hv/Channel.h
index 6fa49ce..00433e1 100644
--- a/drivers/staging/hv/Channel.h
+++ b/drivers/staging/hv/Channel.h
@@ -62,7 +62,7 @@ typedef struct _VMBUS_CHANNEL_PACKET_MULITPAGE_BUFFER {
// Routines
//
-INTERNAL int
+static int
VmbusChannelOpen(
VMBUS_CHANNEL *Channel,
UINT32 SendRingBufferSize,
@@ -73,12 +73,12 @@ VmbusChannelOpen(
PVOID Context
);
-INTERNAL void
+static void
VmbusChannelClose(
VMBUS_CHANNEL *Channel
);
-INTERNAL int
+static int
VmbusChannelSendPacket(
VMBUS_CHANNEL *Channel,
const PVOID Buffer,
@@ -88,7 +88,7 @@ VmbusChannelSendPacket(
UINT32 Flags
);
-INTERNAL int
+static int
VmbusChannelSendPacketPageBuffer(
VMBUS_CHANNEL *Channel,
PAGE_BUFFER PageBuffers[],
@@ -98,7 +98,7 @@ VmbusChannelSendPacketPageBuffer(
UINT64 RequestId
);
-INTERNAL int
+static int
VmbusChannelSendPacketMultiPageBuffer(
VMBUS_CHANNEL *Channel,
MULTIPAGE_BUFFER *MultiPageBuffer,
@@ -107,7 +107,7 @@ VmbusChannelSendPacketMultiPageBuffer(
UINT64 RequestId
);
-INTERNAL int
+static int
VmbusChannelEstablishGpadl(
VMBUS_CHANNEL *Channel,
PVOID Kbuffer, // from kmalloc()
@@ -115,13 +115,13 @@ VmbusChannelEstablishGpadl(
UINT32 *GpadlHandle
);
-INTERNAL int
+static int
VmbusChannelTeardownGpadl(
VMBUS_CHANNEL *Channel,
UINT32 GpadlHandle
);
-INTERNAL int
+static int
VmbusChannelRecvPacket(
VMBUS_CHANNEL *Channel,
PVOID Buffer,
@@ -130,7 +130,7 @@ VmbusChannelRecvPacket(
UINT64* RequestId
);
-INTERNAL int
+static int
VmbusChannelRecvPacketRaw(
VMBUS_CHANNEL *Channel,
PVOID Buffer,
@@ -139,18 +139,18 @@ VmbusChannelRecvPacketRaw(
UINT64* RequestId
);
-INTERNAL void
+static void
VmbusChannelOnChannelEvent(
VMBUS_CHANNEL *Channel
);
-INTERNAL void
+static void
VmbusChannelGetDebugInfo(
VMBUS_CHANNEL *Channel,
VMBUS_CHANNEL_DEBUG_INFO *DebugInfo
);
-INTERNAL void
+static void
VmbusChannelOnTimer(
void *Context
);