pcm179x.h 412 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * definitions for PCM179X
  4. *
  5. * Copyright 2013 Amarula Solutions
  6. */
  7. #ifndef __PCM179X_H__
  8. #define __PCM179X_H__
  9. #define PCM1792A_FORMATS (SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S24_LE | \
  10. SNDRV_PCM_FMTBIT_S16_LE)
  11. extern const struct regmap_config pcm179x_regmap_config;
  12. int pcm179x_common_init(struct device *dev, struct regmap *regmap);
  13. #endif