Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Dec 1998 14:58:39 +0800 (CST)
From:      "Alex D. Chen" <dhchen@Canvas.dorm7.nccu.edu.tw>
To:        FreeBSD-gnats-submit@FreeBSD.ORG
Subject:   kern/9137: Matrox Mystique chip name typo error
Message-ID:  <199812200658.OAA00623@Canvas.dorm7.nccu.edu.tw>

next in thread | raw e-mail | index | archive | help

>Number:         9137
>Category:       kern
>Synopsis:       Matrox Mystique chip name typo error
>Confidential:   yes
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:
>Keywords:
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Dec 19 23:00:01 PST 1998
>Last-Modified:
>Originator:     Alex D. Chen
>Organization:
>Release:        FreeBSD 3.0-CURRENT i386
>Environment:

	

>Description:
I've installed a Matrox Mystique220 on my box.When detecting PCI devices
in booting procedure,the kernel reports:

vga0: <Matrox MGA 1024SG graphics accelerator> rev 0x03 int a irq 11 on pci0.8.0

According to Matrox's Windows Driver,it should be 1164SG(for Mystique 220)
or 1064SG(for Mystique 170)

>How-To-Repeat:
Install a Matrox Mystique on a box,and boot with FreeBSD. :)

>Fix:
/sys/pci/pcisupport.c,line978:

		case 0x051a:
			chip = "MGA 1024SG"; break;
change to:
		case 0x051a
			chip = "MGA 1064SG or 1164SG"; break;
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199812200658.OAA00623>