summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1998-09-29 20:38:54 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1998-09-29 20:38:54 +0000
commitcecc3abb9d8c3debd991f64c72fb107df772cbe2 (patch)
tree3afbb0934e600fe564bf0a87f00b76b88dae2033
parent0e4c0f17f380b9a1030eeea1dd32d585083e5e6c (diff)
Notes
-rw-r--r--sys/i386/isa/vesa.c19
1 files changed, 5 insertions, 14 deletions
diff --git a/sys/i386/isa/vesa.c b/sys/i386/isa/vesa.c
index 54452e8eeda0..2f7c126b5299 100644
--- a/sys/i386/isa/vesa.c
+++ b/sys/i386/isa/vesa.c
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: vesa.c,v 1.4 1998/09/29 04:09:39 ache Exp $
+ * $Id: vesa.c,v 1.3 1998/09/25 11:55:46 yokota Exp $
*/
#include "sc.h"
@@ -327,13 +327,10 @@ vesa_translate_flags(u_int16_t vflags)
static int
vesa_bios_init(void)
{
-#define VESA_INFO_SIZE 512
- static u_char buffer[VESA_INFO_SIZE * 2];
- u_char *buf = buffer;
+ static u_char buf[512];
struct vm86frame vmf;
struct vesa_mode vmode;
u_int32_t p;
- u_short offset;
int modes;
int err;
int i;
@@ -346,16 +343,10 @@ vesa_bios_init(void)
vesa_vmode[0].vi_mode = EOT;
bzero(&vmf, sizeof(vmf)); /* paranoia */
- bzero(buffer, sizeof(buffer));
- vmf.vmf_eax = 0x4f00;
-
- /* workaround - see vm86.c:vm86_datacall */
- offset = (u_int)buf & PAGE_MASK;
- if ((offset + VESA_INFO_SIZE) & PG_FRAME)
- buf += PAGE_SIZE - offset;
-
+ bzero(buf, sizeof(buf));
bcopy("VBE2", buf, 4); /* try for VBE2 data */
- err = vm86_datacall(0x10, &vmf, (char *)buf, VESA_INFO_SIZE,
+ vmf.vmf_eax = 0x4f00;
+ err = vm86_datacall(0x10, &vmf, (char *)buf, sizeof(buf),
&vmf.vmf_es, &vmf.vmf_di);
if ((err != 0) || (vmf.vmf_eax != 0x4f) || bcmp("VESA", buf, 4))
return 1;