aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/Hv.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2009-07-14 18:05:36 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 15:01:45 -0400
commit2be1301b7dafe5c1d081607377291d4274b40d66 (patch)
treef37cbe1a4c29792233b67875a407c6f0aa102cd9 /drivers/staging/hv/Hv.h
parent621d7fb7597e8cc2e24e6b0ca67118b452675d90 (diff)
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/Hv.h')
-rw-r--r--drivers/staging/hv/Hv.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/staging/hv/Hv.h b/drivers/staging/hv/Hv.h
index beb3b28e793..a842e18e448 100644
--- a/drivers/staging/hv/Hv.h
+++ b/drivers/staging/hv/Hv.h
@@ -148,17 +148,17 @@ static inline void WriteMsr(int msr, UINT64 val)
148// 148//
149// Hv Interface 149// Hv Interface
150// 150//
151INTERNAL int 151static int
152HvInit( 152HvInit(
153 VOID 153 VOID
154 ); 154 );
155 155
156INTERNAL VOID 156static VOID
157HvCleanup( 157HvCleanup(
158 VOID 158 VOID
159 ); 159 );
160 160
161INTERNAL HV_STATUS 161static HV_STATUS
162HvPostMessage( 162HvPostMessage(
163 HV_CONNECTION_ID connectionId, 163 HV_CONNECTION_ID connectionId,
164 HV_MESSAGE_TYPE messageType, 164 HV_MESSAGE_TYPE messageType,
@@ -166,17 +166,17 @@ HvPostMessage(
166 SIZE_T payloadSize 166 SIZE_T payloadSize
167 ); 167 );
168 168
169INTERNAL HV_STATUS 169static HV_STATUS
170HvSignalEvent( 170HvSignalEvent(
171 VOID 171 VOID
172 ); 172 );
173 173
174INTERNAL int 174static int
175HvSynicInit( 175HvSynicInit(
176 UINT32 irqVector 176 UINT32 irqVector
177 ); 177 );
178 178
179INTERNAL VOID 179static VOID
180HvSynicCleanup( 180HvSynicCleanup(
181 VOID 181 VOID
182 ); 182 );