mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 17:05:45 +00:00
- Mask out VIDEO_MEMORY_SPACE_DENSE flag, because it's specific to ALPHA processors. This gets Matrox Mystique driver working.
svn path=/trunk/; revision=8597
This commit is contained in:
parent
2b4fa805eb
commit
03e7c82dd2
1 changed files with 2 additions and 1 deletions
|
@ -18,7 +18,7 @@
|
|||
* If not, write to the Free Software Foundation,
|
||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
* $Id: videoprt.c,v 1.14 2004/03/08 20:27:33 dwelch Exp $
|
||||
* $Id: videoprt.c,v 1.15 2004/03/08 20:54:10 navaraf Exp $
|
||||
*/
|
||||
|
||||
#include "videoprt.h"
|
||||
|
@ -1264,6 +1264,7 @@ InternalMapMemory(IN PVIDEO_PORT_DEVICE_EXTENSION DeviceExtension,
|
|||
DPRINT("- IoAddress: %lx\n", IoAddress.u.LowPart);
|
||||
DPRINT("- NumberOfUchars: %lx\n", NumberOfUchars);
|
||||
DPRINT("- InIoSpace: %x\n", InIoSpace);
|
||||
InIoSpace &= ~VIDEO_MEMORY_SPACE_DENSE;
|
||||
if (0 != (InIoSpace & VIDEO_MEMORY_SPACE_P6CACHE))
|
||||
{
|
||||
DPRINT("VIDEO_MEMORY_SPACE_P6CACHE not supported, turning off\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue