David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* |
| 3 | * definitions for PCM179X |
| 4 | * |
| 5 | * Copyright 2013 Amarula Solutions |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __PCM179X_H__ |
| 9 | #define __PCM179X_H__ |
| 10 | |
| 11 | #define PCM1792A_FORMATS (SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S24_LE | \ |
| 12 | SNDRV_PCM_FMTBIT_S16_LE) |
| 13 | |
| 14 | extern const struct regmap_config pcm179x_regmap_config; |
| 15 | |
| 16 | int pcm179x_common_init(struct device *dev, struct regmap *regmap); |
| 17 | |
| 18 | #endif |