diff options
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/wm8962.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/include/sound/wm8962.h b/include/sound/wm8962.h new file mode 100644 index 000000000000..f70258e3471c --- /dev/null +++ b/include/sound/wm8962.h | |||
@@ -0,0 +1,23 @@ | |||
1 | /* | ||
2 | * wm8962.h -- WM8962 Soc Audio driver platform data | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 as | ||
6 | * published by the Free Software Foundation. | ||
7 | */ | ||
8 | |||
9 | #ifndef _WM8962_PDATA_H | ||
10 | #define _WM8962_PDATA_H | ||
11 | |||
12 | #define WM8962_MAX_GPIO 6 | ||
13 | |||
14 | /* Use to set GPIO default values to zero */ | ||
15 | #define WM8962_GPIO_SET 0x10000 | ||
16 | |||
17 | struct wm8962_pdata { | ||
18 | u32 gpio_init[WM8962_MAX_GPIO]; | ||
19 | |||
20 | bool spk_mono; /* Speaker outputs tied together as mono */ | ||
21 | }; | ||
22 | |||
23 | #endif | ||