diff options
author | Charles Clément <caratorn@gmail.com> | 2010-05-12 20:54:39 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-05-14 13:24:03 -0700 |
commit | 3a215e0ff4184314f7f1a099354a272ddedff289 (patch) | |
tree | 997552cb95f28681348474b04ebd88f25c366a4b /drivers/staging/vt6655/power.h | |
parent | 71e510673134999627fd180181079ffccb9ec756 (diff) |
Staging: vt6655: remove IN definition
Remove empty IN definition used to specify input parameters.
Signed-off-by: Charles Clément <caratorn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/vt6655/power.h')
-rw-r--r-- | drivers/staging/vt6655/power.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/staging/vt6655/power.h b/drivers/staging/vt6655/power.h index 769e0d1acd2a..c0dbe216e977 100644 --- a/drivers/staging/vt6655/power.h +++ b/drivers/staging/vt6655/power.h @@ -45,40 +45,40 @@ /*--------------------- Export Functions --------------------------*/ -// IN PSDevice pDevice -// IN PSDevice hDeviceContext +// PSDevice pDevice +// PSDevice hDeviceContext BOOL PSbConsiderPowerDown( - IN void *hDeviceContext, - IN BOOL bCheckRxDMA, - IN BOOL bCheckCountToWakeUp + void *hDeviceContext, + BOOL bCheckRxDMA, + BOOL bCheckCountToWakeUp ); void PSvDisablePowerSaving( - IN void *hDeviceContext + void *hDeviceContext ); void PSvEnablePowerSaving( - IN void *hDeviceContext, - IN WORD wListenInterval + void *hDeviceContext, + WORD wListenInterval ); void PSvSendPSPOLL( - IN void *hDeviceContext + void *hDeviceContext ); BOOL PSbSendNullPacket( - IN void *hDeviceContext + void *hDeviceContext ); BOOL PSbIsNextTBTTWakeUp( - IN void *hDeviceContext + void *hDeviceContext ); #endif //__POWER_H__ |