aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/Hv.c
diff options
context:
space:
mode:
authorHank Janssen <hjanssen@microsoft.com>2010-03-04 17:11:00 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2010-05-11 14:35:32 -0400
commit3e18951955797872558dad615851a4ca63b2770e (patch)
tree15d6843515833c5aa7274042475fb43b47b07c76 /drivers/staging/hv/Hv.c
parent173f3463804dbd583887de9871e85408942f90ee (diff)
staging: hv: Corrected all header comment formats kernel-doc format
Removed kerneldoc /** from functions that should not have them. Added proper kerneldoc headers to functions that should have them. This includes fixes as pointed out by Randy Dunlap and Joe Perches. Cc: Joe Perches <joe@perches.com> Acked-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Haiyang Zhang <haiyangz@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.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/staging/hv/Hv.c b/drivers/staging/hv/Hv.c
index 5d53889fb4a..bfcb75008bf 100644
--- a/drivers/staging/hv/Hv.c
+++ b/drivers/staging/hv/Hv.c
@@ -35,7 +35,7 @@ struct hv_context gHvContext = {
35 .SignalEventBuffer = NULL, 35 .SignalEventBuffer = NULL,
36}; 36};
37 37
38/** 38/*
39 * HvQueryHypervisorPresence - Query the cpuid for presense of windows hypervisor 39 * HvQueryHypervisorPresence - Query the cpuid for presense of windows hypervisor
40 */ 40 */
41static int HvQueryHypervisorPresence(void) 41static int HvQueryHypervisorPresence(void)
@@ -56,7 +56,7 @@ static int HvQueryHypervisorPresence(void)
56 return ecx & HV_PRESENT_BIT; 56 return ecx & HV_PRESENT_BIT;
57} 57}
58 58
59/** 59/*
60 * HvQueryHypervisorInfo - Get version info of the windows hypervisor 60 * HvQueryHypervisorInfo - Get version info of the windows hypervisor
61 */ 61 */
62static int HvQueryHypervisorInfo(void) 62static int HvQueryHypervisorInfo(void)
@@ -125,7 +125,7 @@ static int HvQueryHypervisorInfo(void)
125 return maxLeaf; 125 return maxLeaf;
126} 126}
127 127
128/** 128/*
129 * HvDoHypercall - Invoke the specified hypercall 129 * HvDoHypercall - Invoke the specified hypercall
130 */ 130 */
131static u64 HvDoHypercall(u64 Control, void *Input, void *Output) 131static u64 HvDoHypercall(u64 Control, void *Input, void *Output)
@@ -180,7 +180,7 @@ static u64 HvDoHypercall(u64 Control, void *Input, void *Output)
180#endif /* !x86_64 */ 180#endif /* !x86_64 */
181} 181}
182 182
183/** 183/*
184 * HvInit - Main initialization routine. 184 * HvInit - Main initialization routine.
185 * 185 *
186 * This routine must be called before any other routines in here are called 186 * This routine must be called before any other routines in here are called
@@ -294,7 +294,7 @@ Cleanup:
294 return ret; 294 return ret;
295} 295}
296 296
297/** 297/*
298 * HvCleanup - Cleanup routine. 298 * HvCleanup - Cleanup routine.
299 * 299 *
300 * This routine is called normally during driver unloading or exiting. 300 * This routine is called normally during driver unloading or exiting.
@@ -321,7 +321,7 @@ void HvCleanup(void)
321 DPRINT_EXIT(VMBUS); 321 DPRINT_EXIT(VMBUS);
322} 322}
323 323
324/** 324/*
325 * HvPostMessage - Post a message using the hypervisor message IPC. 325 * HvPostMessage - Post a message using the hypervisor message IPC.
326 * 326 *
327 * This involves a hypercall. 327 * This involves a hypercall.
@@ -362,7 +362,7 @@ u16 HvPostMessage(union hv_connection_id connectionId,
362} 362}
363 363
364 364
365/** 365/*
366 * HvSignalEvent - Signal an event on the specified connection using the hypervisor event IPC. 366 * HvSignalEvent - Signal an event on the specified connection using the hypervisor event IPC.
367 * 367 *
368 * This involves a hypercall. 368 * This involves a hypercall.
@@ -376,7 +376,7 @@ u16 HvSignalEvent(void)
376 return status; 376 return status;
377} 377}
378 378
379/** 379/*
380 * HvSynicInit - Initialize the Synthethic Interrupt Controller. 380 * HvSynicInit - Initialize the Synthethic Interrupt Controller.
381 * 381 *
382 * If it is already initialized by another entity (ie x2v shim), we need to 382 * If it is already initialized by another entity (ie x2v shim), we need to
@@ -482,7 +482,7 @@ Cleanup:
482 return; 482 return;
483} 483}
484 484
485/** 485/*
486 * HvSynicCleanup - Cleanup routine for HvSynicInit(). 486 * HvSynicCleanup - Cleanup routine for HvSynicInit().
487 */ 487 */
488void HvSynicCleanup(void *arg) 488void HvSynicCleanup(void *arg)