diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-09-20 16:05:47 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-09-20 16:05:47 +0000 |
commit | afcea8cbdea8180b42093377b2c700d1b7f20b7c (patch) | |
tree | c638b6c2a483794e5fdb9a520c31337d6178acad /monitor.c | |
parent | 5e520a7d500ec2569d22d80f9ef4272a34cb3c80 (diff) |
ioports: remove unused env parameter and compile only once
The CPU state parameter is not used, remove it and adjust callers. Now we
can compile ioport.c once for all targets.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1200,7 +1200,7 @@ static void do_ioport_read(Monitor *mon, const QDict *qdict) if (has_index) { int index = qdict_get_int(qdict, "index"); - cpu_outb(NULL, addr & IOPORTS_MASK, index & 0xff); + cpu_outb(addr & IOPORTS_MASK, index & 0xff); addr++; } addr &= 0xffff; @@ -1208,15 +1208,15 @@ static void do_ioport_read(Monitor *mon, const QDict *qdict) switch(size) { default: case 1: - val = cpu_inb(NULL, addr); + val = cpu_inb(addr); suffix = 'b'; break; case 2: - val = cpu_inw(NULL, addr); + val = cpu_inw(addr); suffix = 'w'; break; case 4: - val = cpu_inl(NULL, addr); + val = cpu_inl(addr); suffix = 'l'; break; } @@ -1235,13 +1235,13 @@ static void do_ioport_write(Monitor *mon, const QDict *qdict) switch (size) { default: case 1: - cpu_outb(NULL, addr, val); + cpu_outb(addr, val); break; case 2: - cpu_outw(NULL, addr, val); + cpu_outw(addr, val); break; case 4: - cpu_outl(NULL, addr, val); + cpu_outl(addr, val); break; } } |