diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2008-03-02 08:42:16 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2008-03-02 08:42:16 -0500 |
commit | ee2fd7a5880605b1111fb6efa4737d8c78c5d646 (patch) | |
tree | 4769a181e69587eb1d9cfabdeadd70b5aafb33dc /src/ioport.h | |
parent | 63dbcfbff1b8b5ce5f0e89d428d9ff43c9d9ac0a (diff) | |
download | seabios-ee2fd7a5880605b1111fb6efa4737d8c78c5d646.tar.gz |
Rename PORT_KBD_* to PORT_PS2_*
This change is in preparation for mouse support.
Diffstat (limited to 'src/ioport.h')
-rw-r--r-- | src/ioport.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ioport.h b/src/ioport.h index b88f3518..d756e340 100644 --- a/src/ioport.h +++ b/src/ioport.h @@ -20,9 +20,9 @@ #define PORT_PIT_COUNTER1 0x0041 #define PORT_PIT_COUNTER2 0x0042 #define PORT_PIT_MODE 0x0043 -#define PORT_KBD_DATA 0x0060 -#define PORT_KBD_CTRLB 0x0061 -#define PORT_KBD_STATUS 0x0064 +#define PORT_PS2_DATA 0x0060 +#define PORT_PS2_CTRLB 0x0061 +#define PORT_PS2_STATUS 0x0064 #define PORT_CMOS_INDEX 0x0070 #define PORT_CMOS_DATA 0x0071 #define PORT_DIAG 0x0080 |