Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add btusb sco driver support for AX210 TyP2 #5

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions include/sound/memalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ struct device;
struct vm_area_struct;
struct sg_table;


#define snd_dma_continuous_data(x) ((struct device *)(__force unsigned long)(x))
/*
* buffer device info
*/
Expand Down
5 changes: 2 additions & 3 deletions sound/usb/btusb/btusb_sco_snd_card.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ static const struct usb_device_id btusb_sco_table[] = {
{ USB_DEVICE(0x8087, 0x0aaa), .driver_info = BTUSB_INTEL_NEW },
{ USB_DEVICE(0x8087, 0x0aa7), .driver_info = BTUSB_INTEL_NEW },
{ USB_DEVICE(0x8087, 0x0033), .driver_info = BTUSB_INTEL_NEW },
{ USB_DEVICE(0x8087, 0x0032), .driver_info = BTUSB_INTEL_NEW },
{ } /* Terminating entry */
};

Expand Down Expand Up @@ -937,10 +938,8 @@ static int btusb_snd_card_create(struct btusb_data *data)
&btusb_isoc_playback_ops);
snd_pcm_lib_preallocate_pages_for_all(pcm,
SNDRV_DMA_TYPE_CONTINUOUS,
dev,
NULL,
64 * 1024, 64 * 1024);
// (void*)snd_dma_continuous_data(GFP_KERNEL),
// 64 * 1024, 64 * 1024);
strlcpy(card->driver, "bt_audio_source", sizeof(card->driver));
strlcpy(card->shortname, card->driver, sizeof(card->shortname));
strlcpy(card->longname, "USB Bluetooth audio source",
Expand Down
Loading