aboutsummaryrefslogtreecommitdiffstats
path: root/sound/usb/helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/usb/helper.c')
-rw-r--r--sound/usb/helper.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/usb/helper.c b/sound/usb/helper.c
index 9eed8f40b179..c1db28f874c2 100644
--- a/sound/usb/helper.c
+++ b/sound/usb/helper.c
@@ -21,6 +21,7 @@
21 21
22#include "usbaudio.h" 22#include "usbaudio.h"
23#include "helper.h" 23#include "helper.h"
24#include "quirks.h"
24 25
25/* 26/*
26 * combine bytes and get an integer value 27 * combine bytes and get an integer value
@@ -97,6 +98,10 @@ int snd_usb_ctl_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
97 memcpy(data, buf, size); 98 memcpy(data, buf, size);
98 kfree(buf); 99 kfree(buf);
99 } 100 }
101
102 snd_usb_ctl_msg_quirk(dev, pipe, request, requesttype,
103 value, index, data, size);
104
100 return err; 105 return err;
101} 106}
102 107