2 * Line6 Linux USB driver - 0.9.1beta
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2.
15 #include <linux/usb.h>
16 #include <linux/wait.h>
17 #include <sound/core.h>
24 struct line6_dump_reqbuf {
26 Buffer for dump requests.
28 unsigned char *buffer;
37 Provides the functionality to request channel/model/... dump data from a
40 struct line6_dump_request {
42 Wait queue for access to program dump data.
44 wait_queue_head_t wait;
47 Indicates an unfinished program dump request.
49 1: dump current settings
50 Other device-specific values are also allowed.
57 struct line6_dump_reqbuf reqbufs[1];
60 extern void line6_dump_finished(struct line6_dump_request *l6dr);
61 extern int line6_dump_request_async(struct line6_dump_request *l6dr,
62 struct usb_line6 *line6, int num, int dest);
63 extern void line6_dump_started(struct line6_dump_request *l6dr, int dest);
64 extern void line6_dumpreq_destruct(struct line6_dump_request *l6dr);
65 extern void line6_dumpreq_destructbuf(struct line6_dump_request *l6dr, int num);
66 extern int line6_dumpreq_init(struct line6_dump_request *l6dr, const void *buf,
68 extern int line6_dumpreq_initbuf(struct line6_dump_request *l6dr,
69 const void *buf, size_t len, int num);
70 extern void line6_invalidate_current(struct line6_dump_request *l6dr);
71 extern void line6_dump_wait(struct line6_dump_request *l6dr);
72 extern int line6_dump_wait_interruptible(struct line6_dump_request *l6dr);
73 extern int line6_dump_wait_timeout(struct line6_dump_request *l6dr,