2009-01-08 15:06:55 +00:00
|
|
|
From 32a51abce25df28d579eb73b42f06cc63741f17b Mon Sep 17 00:00:00 2001
|
|
|
|
From: Adam Jackson <ajax@redhat.com>
|
|
|
|
Date: Thu, 8 Jan 2009 10:03:52 -0500
|
|
|
|
Subject: [PATCH] HACK: Work around broken mtrr.h
|
|
|
|
|
|
|
|
---
|
|
|
|
hw/kdrive/src/kmap.c | 1 +
|
|
|
|
hw/xfree86/os-support/linux/lnx_video.c | 1 +
|
|
|
|
2 files changed, 2 insertions(+), 0 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/hw/kdrive/src/kmap.c b/hw/kdrive/src/kmap.c
|
|
|
|
index 60e8ae1..537d740 100644
|
|
|
|
--- a/hw/kdrive/src/kmap.c
|
|
|
|
+++ b/hw/kdrive/src/kmap.c
|
2009-01-08 15:25:48 +00:00
|
|
|
@@ -27,6 +27,8 @@
|
2009-01-08 15:06:55 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#ifdef HAVE_ASM_MTRR_H
|
2009-01-08 15:25:48 +00:00
|
|
|
+typedef unsigned char u8;
|
2009-01-08 15:06:55 +00:00
|
|
|
+typedef unsigned int u32;
|
|
|
|
#include <asm/mtrr.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
diff --git a/hw/xfree86/os-support/linux/lnx_video.c b/hw/xfree86/os-support/linux/lnx_video.c
|
|
|
|
index 688106a..535c3a0 100644
|
|
|
|
--- a/hw/xfree86/os-support/linux/lnx_video.c
|
|
|
|
+++ b/hw/xfree86/os-support/linux/lnx_video.c
|
2009-01-08 15:25:48 +00:00
|
|
|
@@ -44,6 +45,8 @@
|
2009-01-08 15:06:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAS_MTRR_SUPPORT
|
2009-01-08 15:25:48 +00:00
|
|
|
+typedef unsigned char u8;
|
2009-01-08 15:06:55 +00:00
|
|
|
+typedef unsigned int u32;
|
|
|
|
#include <asm/mtrr.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
--
|
|
|
|
1.6.0.3
|
|
|
|
|