diff options
author | Takashi Iwai <tiwai@suse.de> | 2014-06-03 05:51:14 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-06-03 05:51:14 -0400 |
commit | 8743dcd6639c28204ac03fb3e9db7932e3d85418 (patch) | |
tree | 53b80846cf6731ddb196d522ed2bbf0f76da8344 /sound/soc/codecs/adau1781.h | |
parent | efd4b76ef789541e7046e873b3546209352cdb59 (diff) | |
parent | e1d4d3c854f25cff6c6c139588570e124d5e8fa4 (diff) |
Merge tag 'asoc-v3.16-2' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-next
ASoC: Final updates for v3.16
A few more updates from the last week of development, nothing too
exciting. Highlights include:
- GPIO descriptor support for jacks
- More updates and fixes to the Freescale SSI, Intel and rsnd drivers.
- New drivers for Analog Devices ADAU1361, ADAU1381, ADAU1761 and
ADAU1781, and Realtek RT5677.
Diffstat (limited to 'sound/soc/codecs/adau1781.h')
-rw-r--r-- | sound/soc/codecs/adau1781.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sound/soc/codecs/adau1781.h b/sound/soc/codecs/adau1781.h new file mode 100644 index 000000000000..2b96e0a9ff2e --- /dev/null +++ b/sound/soc/codecs/adau1781.h | |||
@@ -0,0 +1,23 @@ | |||
1 | /* | ||
2 | * ADAU1381/ADAU1781 driver | ||
3 | * | ||
4 | * Copyright 2014 Analog Devices Inc. | ||
5 | * Author: Lars-Peter Clausen <lars@metafoo.de> | ||
6 | * | ||
7 | * Licensed under the GPL-2. | ||
8 | */ | ||
9 | |||
10 | #ifndef __SOUND_SOC_CODECS_ADAU1781_H__ | ||
11 | #define __SOUND_SOC_CODECS_ADAU1781_H__ | ||
12 | |||
13 | #include <linux/regmap.h> | ||
14 | #include "adau17x1.h" | ||
15 | |||
16 | struct device; | ||
17 | |||
18 | int adau1781_probe(struct device *dev, struct regmap *regmap, | ||
19 | enum adau17x1_type type, void (*switch_mode)(struct device *dev)); | ||
20 | |||
21 | extern const struct regmap_config adau1781_regmap_config; | ||
22 | |||
23 | #endif | ||