Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Jun 2004 12:02:30 -0500
From:      Joseph Dunn <joseph@magnesium.net>
To:        freebsd-hackers@freebsd.org
Cc:        gringoloco1985@hotmail.com
Subject:   Re: Dell SBLive! (almost) fixed
Message-ID:  <20040609170230.GA568@magnesium.net>
In-Reply-To: <20040609165900.GB355@magnesium.net>

index | next in thread | previous in thread | raw e-mail

[-- Attachment #1 --]
Whoops, forgot the diff. It's attached.

Joseph

[-- Attachment #2 --]
--- emu10k1.c	2004-06-09 11:26:37.000000000 -0500
+++ emu10k1.c.dell	2004-06-09 11:29:26.000000000 -0500
@@ -37,6 +37,7 @@
 /* -------------------------------------------------------------------- */
 
 #define	EMU10K1_PCI_ID	0x00021102
+#define	EMU10K1_DELL_PCI_ID	0x00061102
 #define	EMU10K2_PCI_ID	0x00041102
 #define	EMU_DEFAULT_BUFSZ	4096
 #define	EMU_CHANS	4
@@ -1441,6 +1442,10 @@
 	case EMU10K1_PCI_ID:
 		s = "Creative EMU10K1";
 		break;
+
+	case EMU10K1_DELL_PCI_ID:
+		s = "Creative EMU10K1 (Dell)";
+		break;
 /*
 	case EMU10K2_PCI_ID:
 		s = "Creative EMU10K2";
@@ -1595,6 +1600,10 @@
 		s = "Creative EMU10K1 Joystick";
 		device_quiet(dev);
 		break;
+	case 0x70041102:
+		s = "Creative EMU10K1 Joystick (Dell)";
+		device_quiet(dev);
+		break;
 	case 0x70031102:
 		s = "Creative EMU10K2 Joystick";
 		device_quiet(dev);
help

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