On Sun, Feb 01, 2004 at 01:58:06PM +0100, Karsten Wiese wrote: > Am Freitag, 30. Januar 2004 21:12 schrieb Martin Langer: > > > > I guess it's time to create some official 224 driver/loader patches for > > Alsa CVS now. Any objections? > > You uncommented any section containing USB_ID_US224 in snd-usb-usx2y?
Yes, ATM there's nothing done except uncommenting two things in the driver (see attached patch). And it's based on the usx2yloader patch from yesterday. martin -- The only nice thing about spam is that it doesn't ring.
--- usbusx2y.c.ORIGINAL Mon Feb 2 19:33:45 2004 +++ usbusx2y.c Mon Feb 2 19:35:14 2004 @@ -247,11 +247,11 @@ .idVendor = 0x1604, .idProduct = USB_ID_US122 }, -/* { FIXME: uncomment to test us224 support*/ -/* .match_flags = USB_DEVICE_ID_MATCH_DEVICE, */ -/* .idVendor = 0x1604, */ -/* .idProduct = USB_ID_US224 */ -/* }, */ + { + .match_flags = USB_DEVICE_ID_MATCH_DEVICE, + .idVendor = 0x1604, + .idProduct = USB_ID_US224 + }, { /* terminator */ } }; @@ -292,7 +292,7 @@ int err; snd_card_t* card; if (device->descriptor.idVendor != 0x1604 || - (device->descriptor.idProduct != USB_ID_US122 && /* device->descriptor.idProduct != USB_ID_US224 && */ device->descriptor.idProduct != USB_ID_US428) || + (device->descriptor.idProduct != USB_ID_US122 && device->descriptor.idProduct != USB_ID_US224 && device->descriptor.idProduct != USB_ID_US428) || !(card = snd_usX2Y_create_card(device))) return 0; if ((err = snd_usX2Y_hwdep_new(card, device)) < 0 ||