diff options
author | eric_tian <eric_tian@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-06-17 01:57:42 +0000 |
---|---|---|
committer | eric_tian <eric_tian@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-06-17 01:57:42 +0000 |
commit | 18a73eb727e697f15891ccad55507ae3d8c37461 (patch) | |
tree | 255c8f72f7fcd6a9c7d7e9fb85a907deeae60733 /IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/CommPs2.h | |
parent | f1b87e7a60f503a03fea0389f11963e2b675a014 (diff) | |
download | edk2-platforms-18a73eb727e697f15891ccad55507ae3d8c37461.tar.xz |
clean ECC issue
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8580 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/CommPs2.h')
-rw-r--r-- | IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/CommPs2.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/CommPs2.h b/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/CommPs2.h index fb2bbac750..294aaceb4f 100644 --- a/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/CommPs2.h +++ b/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/CommPs2.h @@ -1,5 +1,5 @@ -/**@file
- PS2 Mouse Communication Interface
+/** @file
+ Using PS2 Mouse to simulation Absolution Pointer Device.
Copyright (c) 2006 - 2007, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -12,8 +12,8 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. **/
-#ifndef _COMMPS2_H_
-#define _COMMPS2_H_
+#ifndef __COMMPS2_H__
+#define __COMMPS2_H__
#define PS2_PACKET_LENGTH 3
#define PS2_SYNC_MASK 0xc
@@ -246,7 +246,7 @@ PS2MouseEnable ( /**
Get mouse packet . Only care first 3 bytes
- @param MouseDev Pointer of PS2 Mouse Private Data Structure
+ @param MouseAbsolutePointerDev Pointer to PS2 Absolute Pointer Simulation Device Private Data Structure
@retval EFI_NOT_READY Mouse Device not ready to input data packet, or some error happened during getting the packet
@retval EFI_SUCCESS The data packet is gotten successfully.
@@ -359,7 +359,7 @@ In8042AuxData ( I/O work flow of outing 8042 Aux data.
@param IsaIo Pointer to instance of EFI_ISA_IO_PROTOCOL
- @param Command Aux I/O command
+ @param Data Buffer holding return value.
@retval EFI_SUCCESS Success to excute I/O work flow
@retval EFI_TIMEOUT Keyboard controller time out.
@@ -371,7 +371,7 @@ Out8042AuxData ( );
/**
- Check keyboard controller status, if it is output buffer full and for auxiliary device
+ Check keyboard controller status, if it is output buffer full and for auxiliary device.
@param IsaIo Pointer to instance of EFI_ISA_IO_PROTOCOL
@@ -413,4 +413,4 @@ WaitOutputFull ( IN UINTN Timeout
);
-#endif // _COMMPS2_H_
+#endif // __COMMPS2_H__
|