Messages in this thread Patch in this message |  | | From | Jerome Cornet <> | Subject | [PATCH] SB driver, kernel 2.4.10 | Date | Tue, 2 Oct 2001 17:52:05 -0400 |
| |
Hi there,
The PnP initialisation of my brand old SB AWE64 PnP was not supported by the current (2.4.10) kernel driver (I could initialise it by using isapnptools, but not directly by the pnp driver).
I patched sb_card.c so that the device ID of my board is known by the SB driver, thus allowing the isapnp initialisation by the driver directly.
I tested it on my computer, and I don't expect the patch to break anything (it's a no brainer fix)
Maybe you can consider applying it to the next release ?
Thank you, /Jerome
PS: please CC: me for the replies, I'm not subscribed to linux-kernel Jerome Cornet <jcornet@free.fr>: Add a new flavor of AWE64 PnP to the sb driver --- kernel-source-2.4.10/drivers/sound/sb_card.c Tue Sep 18 17:10:43 2001 +++ linux/drivers/sound/sb_card.c Tue Oct 2 17:35:06 2001 @@ -53,6 +53,9 @@ * * 28-10-2000 Added pnplegacy support * Daniel Church <dchurch@mbhs.edu> + * + * 01-10-2001 Added a new flavor of Creative SB AWE64 PnP (CTL00E9). + * Jerome Cornet <jcornet@free.fr> */ #include <linux/config.h> @@ -435,6 +438,11 @@ 0,1,1,-1}, {"Sound Blaster AWE 64", ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00E4), + ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0045), + 0,0,0,0, + 0,1,1,-1}, + {"Sound Blaster AWE 64", + ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00E9), ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0045), 0,0,0,0, 0,1,1,-1}, |  |