| 
									
										
										
										
											2006-08-01 11:28:16 +10:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * <linux/usb/audio.h> -- USB Audio definitions. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2006 Thumtronics Pty Ltd. | 
					
						
							|  |  |  |  * Developed for Thumtronics by Grey Innovation | 
					
						
							|  |  |  |  * Ben Williamson <ben.williamson@greyinnovation.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This software is distributed under the terms of the GNU General Public | 
					
						
							|  |  |  |  * License ("GPL") version 2, as published by the Free Software Foundation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file holds USB constants and structures defined | 
					
						
							|  |  |  |  * by the USB Device Class Definition for Audio Devices. | 
					
						
							|  |  |  |  * Comments below reference relevant sections of that document: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * http://www.usb.org/developers/devclass_docs/audio10.pdf
 | 
					
						
							| 
									
										
										
										
											2010-03-11 21:13:20 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Types and defines in this file are either specific to version 1.0 of | 
					
						
							|  |  |  |  * this standard or common for newer versions. | 
					
						
							| 
									
										
										
										
											2006-08-01 11:28:16 +10:00
										 |  |  |  */ | 
					
						
							|  |  |  | #ifndef __LINUX_USB_AUDIO_H
 | 
					
						
							|  |  |  | #define __LINUX_USB_AUDIO_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-09 09:49:07 +01:00
										 |  |  | #include <uapi/linux/usb/audio.h>
 | 
					
						
							| 
									
										
										
										
											2010-03-11 21:13:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-29 14:23:25 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-03 09:17:57 -04:00
										 |  |  | struct usb_audio_control { | 
					
						
							|  |  |  | 	struct list_head list; | 
					
						
							|  |  |  | 	const char *name; | 
					
						
							|  |  |  | 	u8 type; | 
					
						
							|  |  |  | 	int data[5]; | 
					
						
							|  |  |  | 	int (*set)(struct usb_audio_control *con, u8 cmd, int value); | 
					
						
							|  |  |  | 	int (*get)(struct usb_audio_control *con, u8 cmd); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct usb_audio_control_selector { | 
					
						
							|  |  |  | 	struct list_head list; | 
					
						
							|  |  |  | 	struct list_head control; | 
					
						
							|  |  |  | 	u8 id; | 
					
						
							|  |  |  | 	const char *name; | 
					
						
							|  |  |  | 	u8 type; | 
					
						
							|  |  |  | 	struct usb_descriptor_header *desc; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-07 13:45:32 -05:00
										 |  |  | #endif /* __LINUX_USB_AUDIO_H */
 |