max98090.h 534 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Platform data for MAX98090
  4. *
  5. * Copyright 2011-2012 Maxim Integrated Products
  6. */
  7. #ifndef __SOUND_MAX98090_PDATA_H__
  8. #define __SOUND_MAX98090_PDATA_H__
  9. /* codec platform data */
  10. struct max98090_pdata {
  11. /* Analog/digital microphone configuration:
  12. * 0 = analog microphone input (normal setting)
  13. * 1 = digital microphone input
  14. */
  15. unsigned int digmic_left_mode:1;
  16. unsigned int digmic_right_mode:1;
  17. unsigned int digmic_3_mode:1;
  18. unsigned int digmic_4_mode:1;
  19. };
  20. #endif