Merge "usb: gadget: f_midi: Use 1024 bytes as MIDI buffer size"

This commit is contained in:
Linux Build Service Account 2016-10-14 03:40:38 -07:00 committed by Gerrit - the friendly Code Review server
commit 911b4fecbe

View file

@ -1111,7 +1111,7 @@ static struct usb_function_instance *f_midi_alloc_inst(void)
opts->func_inst.free_func_inst = f_midi_free_inst;
opts->index = SNDRV_DEFAULT_IDX1;
opts->id = SNDRV_DEFAULT_STR1;
opts->buflen = 256;
opts->buflen = 1024;
opts->qlen = 32;
opts->in_ports = 1;
opts->out_ports = 1;