diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2012-06-10 09:09:22 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2012-06-10 09:09:22 -0400 |
commit | e51316d0cc6f663357d9d6c6f4ee3ffddb0d09e5 (patch) | |
tree | 72fa37be59edd8e2c9d65f4660559c263d6814f9 /src/mouse.c | |
parent | 7a88c87f99bd694fc4815854056e0ac529ae905d (diff) | |
download | seabios-e51316d0cc6f663357d9d6c6f4ee3ffddb0d09e5.tar.gz |
Minor - remove CLEARBITS_BDA and SETBITS_BDA macros.
Remove these infrequently used macros and replace with explicit
GET_BDA/SET_BDA calls.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/mouse.c')
-rw-r--r-- | src/mouse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mouse.c b/src/mouse.c index e4b25e0e..7b28a632 100644 --- a/src/mouse.c +++ b/src/mouse.c @@ -18,7 +18,7 @@ mouse_setup(void) return; dprintf(3, "init mouse\n"); // pointing device installed - SETBITS_BDA(equipment_list_flags, 0x04); + set_equipment_flags(0x04, 0x04); } static int |