adau1372.h 453 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * ADAU1372 driver
  4. *
  5. * Copyright 2016 Analog Devices Inc.
  6. * Author: Lars-Peter Clausen <[email protected]>
  7. */
  8. #ifndef SOUND_SOC_CODECS_ADAU1372_H
  9. #define SOUND_SOC_CODECS_ADAU1372_H
  10. #include <linux/regmap.h>
  11. struct device;
  12. int adau1372_probe(struct device *dev, struct regmap *regmap,
  13. void (*switch_mode)(struct device *dev));
  14. extern const struct regmap_config adau1372_regmap_config;
  15. #endif