Lars-Peter Clausen | 2923af0 | 2014-05-27 10:53:19 +0200 | [diff] [blame] | 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 |