Bug 47453 - Leadtek Winfast TV 2000 card identification error
Summary: Leadtek Winfast TV 2000 card identification error
Status: Closed FIXED
Alias: None
Product: Base System
Classification: Unclassified
Component: kern (show other bugs)
Version: 5.0-RELEASE
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-01-25 08:50 UTC by Hayley Wesson
Modified: 2003-06-17 18:03 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Hayley Wesson 2003-01-25 08:50:01 UTC
	In /usr/src/sys/dev/bktr/bktr_card.c the line
	#define PCI_VENDOR_LEADTEK_ALT      0x6606
	should be changed to read
	#define PCI_VENDOR_LEADTEK_ALT      0x107d

	With it set to 0x6606 it refuses to ID the Leadtek Winfast TV 2000
	card correctly because that is the card's model, where 0x107d is
	Leadtek's actual vendor id.

Fix: 

Change the line
	#define PCI_VENDOR_LEADTEK_ALT      0x6606
	in /usr/src/sys/dev/bktr/bktr_card.c to read
	#define PCI_VENDOR_LEADTEK_ALT      0x107d
Comment 1 Max Khon freebsd_committer freebsd_triage 2003-06-09 20:15:51 UTC
State Changed
From-To: open->patched

Patch committed to HEAD (with one more Vendor ID obtained from NetBSD).
Comment 2 Max Khon freebsd_committer freebsd_triage 2003-06-17 18:01:39 UTC
State Changed
From-To: patched->closed

The fix MFC'ed to RELENG_4, thanks!