summaryrefslogtreecommitdiffstats
path: root/src/arch/i386/prefix
diff options
context:
space:
mode:
authorMichael Brown2005-04-22 18:03:25 +0200
committerMichael Brown2005-04-22 18:03:25 +0200
commit84f43ea9cf3be9b6f2d03bbf4a2f67fc013dcb45 (patch)
treed3e5698d6ed3bd5653e72c312aaa399e6ddf4f3b /src/arch/i386/prefix
parentUpdated debug messages (diff)
downloadipxe-84f43ea9cf3be9b6f2d03bbf4a2f67fc013dcb45.tar.gz
ipxe-84f43ea9cf3be9b6f2d03bbf4a2f67fc013dcb45.tar.xz
ipxe-84f43ea9cf3be9b6f2d03bbf4a2f67fc013dcb45.zip
isapnp_read_port can be set directly, rather than via a function call.
Diffstat (limited to 'src/arch/i386/prefix')
-rw-r--r--src/arch/i386/prefix/select_isapnp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/i386/prefix/select_isapnp.c b/src/arch/i386/prefix/select_isapnp.c
index 14e3db032..54ac1c9a3 100644
--- a/src/arch/i386/prefix/select_isapnp.c
+++ b/src/arch/i386/prefix/select_isapnp.c
@@ -23,7 +23,7 @@ void i386_select_isapnp_device ( struct i386_all_regs *regs ) {
} u;
/* Set ISAPnP read port */
- isapnp_set_read_port ( regs->dx );
+ isapnp_read_port = regs->dx;
/* Select ISAPnP bus and specified CSN as first boot device */
memset ( &u, 0, sizeof ( u ) );