Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit beb99fd6 authored by Hemant Kumar's avatar Hemant Kumar Committed by Jack Pham
Browse files

sound: usb: Increase maximum transfer buffer limit



In order to support higher bit rate like 384Khz
higher buffer sizes are required. Hence change
the max limit from 2 * PAGE_SIZE to 24 * PAGE_SIZE.

Change-Id: I9d57f3011fee086b2d54997d85bc9a37ccc07e4a
Signed-off-by: default avatarHemant Kumar <hemantk@codeaurora.org>
parent 1e634539
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@
#define IOVA_XFER_RING_MAX (IOVA_XFER_BUF_BASE - PAGE_SIZE)
#define IOVA_XFER_BUF_MAX (0xfffff000 - PAGE_SIZE)

#define MAX_XFER_BUFF_LEN (2 * PAGE_SIZE)
#define MAX_XFER_BUFF_LEN (24 * PAGE_SIZE)

struct iova_info {
	struct list_head list;