mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
21 lines
479 B
C
21 lines
479 B
C
![]() |
/* SPDX-License-Identifier: GPL-2.0
|
||
|
*
|
||
|
* sound/q6usboffload.h -- QDSP6 USB offload
|
||
|
*
|
||
|
* Copyright (c) 2022-2025 Qualcomm Innovation Center, Inc. All rights reserved.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* struct q6usb_offload - USB backend DAI link offload parameters
|
||
|
* @dev: dev handle to usb be
|
||
|
* @domain: allocated iommu domain
|
||
|
* @intr_num: usb interrupter number
|
||
|
* @sid: streamID for iommu
|
||
|
**/
|
||
|
struct q6usb_offload {
|
||
|
struct device *dev;
|
||
|
struct iommu_domain *domain;
|
||
|
u16 intr_num;
|
||
|
u8 sid;
|
||
|
};
|