adau1761.h 531 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * ADAU1361/ADAU1461/ADAU1761/ADAU1961 driver
  4. *
  5. * Copyright 2014 Analog Devices Inc.
  6. * Author: Lars-Peter Clausen <[email protected]>
  7. */
  8. #ifndef __SOUND_SOC_CODECS_ADAU1761_H__
  9. #define __SOUND_SOC_CODECS_ADAU1761_H__
  10. #include <linux/regmap.h>
  11. #include "adau17x1.h"
  12. struct device;
  13. int adau1761_probe(struct device *dev, struct regmap *regmap,
  14. enum adau17x1_type type, void (*switch_mode)(struct device *dev));
  15. extern const struct regmap_config adau1761_regmap_config;
  16. #endif