adau1761.h 519 B

1234567891011121314151617181920212223
  1. /*
  2. * ADAU1361/ADAU1461/ADAU1761/ADAU1961 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. #ifndef __SOUND_SOC_CODECS_ADAU1761_H__
  10. #define __SOUND_SOC_CODECS_ADAU1761_H__
  11. #include <linux/regmap.h>
  12. #include "adau17x1.h"
  13. struct device;
  14. int adau1761_probe(struct device *dev, struct regmap *regmap,
  15. enum adau17x1_type type, void (*switch_mode)(struct device *dev));
  16. extern const struct regmap_config adau1761_regmap_config;
  17. #endif