summaryrefslogtreecommitdiff
path: root/drivers/staging/hv/ChannelInterface.c
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/ChannelInterface.c
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/ChannelInterface.c')
-rw-r--r--drivers/staging/hv/ChannelInterface.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/staging/hv/ChannelInterface.c b/drivers/staging/hv/ChannelInterface.c
index 1a7663e..94b8245 100644
--- a/drivers/staging/hv/ChannelInterface.c
+++ b/drivers/staging/hv/ChannelInterface.c
@@ -23,7 +23,7 @@
#include "VmbusPrivate.h"
-INTERNAL int
+static int
IVmbusChannelOpen(
PDEVICE_OBJECT Device,
UINT32 SendBufferSize,
@@ -44,7 +44,7 @@ IVmbusChannelOpen(
}
-INTERNAL void
+static void
IVmbusChannelClose(
PDEVICE_OBJECT Device
)
@@ -53,7 +53,7 @@ IVmbusChannelClose(
}
-INTERNAL int
+static int
IVmbusChannelSendPacket(
PDEVICE_OBJECT Device,
const PVOID Buffer,
@@ -71,7 +71,7 @@ IVmbusChannelSendPacket(
Flags);
}
-INTERNAL int
+static int
IVmbusChannelSendPacketPageBuffer(
PDEVICE_OBJECT Device,
PAGE_BUFFER PageBuffers[],
@@ -89,7 +89,7 @@ IVmbusChannelSendPacketPageBuffer(
RequestId);
}
-INTERNAL int
+static int
IVmbusChannelSendPacketMultiPageBuffer(
PDEVICE_OBJECT Device,
MULTIPAGE_BUFFER *MultiPageBuffer,
@@ -105,7 +105,7 @@ IVmbusChannelSendPacketMultiPageBuffer(
RequestId);
}
-INTERNAL int
+static int
IVmbusChannelRecvPacket (
PDEVICE_OBJECT Device,
PVOID Buffer,
@@ -121,7 +121,7 @@ IVmbusChannelRecvPacket (
RequestId);
}
-INTERNAL int
+static int
IVmbusChannelRecvPacketRaw(
PDEVICE_OBJECT Device,
PVOID Buffer,
@@ -137,7 +137,7 @@ IVmbusChannelRecvPacketRaw(
RequestId);
}
-INTERNAL int
+static int
IVmbusChannelEstablishGpadl(
PDEVICE_OBJECT Device,
PVOID Buffer,
@@ -151,7 +151,7 @@ IVmbusChannelEstablishGpadl(
GpadlHandle);
}
-INTERNAL int
+static int
IVmbusChannelTeardownGpadl(
PDEVICE_OBJECT Device,
UINT32 GpadlHandle
@@ -162,7 +162,7 @@ IVmbusChannelTeardownGpadl(
}
-INTERNAL void
+static void
GetChannelInterface(
VMBUS_CHANNEL_INTERFACE *ChannelInterface
)
@@ -180,7 +180,7 @@ GetChannelInterface(
}
-INTERNAL void
+static void
GetChannelInfo(
PDEVICE_OBJECT Device,
DEVICE_INFO *DeviceInfo