From 84f43ea9cf3be9b6f2d03bbf4a2f67fc013dcb45 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Fri, 22 Apr 2005 16:03:25 +0000 Subject: [PATCH] isapnp_read_port can be set directly, rather than via a function call. --- src/arch/i386/prefix/select_isapnp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/i386/prefix/select_isapnp.c b/src/arch/i386/prefix/select_isapnp.c index 14e3db03..54ac1c9a 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 ) );