uda1380.h 481 B

12345678910111213141516171819202122
  1. /*
  2. * UDA1380 ALSA SoC Codec driver
  3. *
  4. * Copyright 2009 Philipp Zabel
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #ifndef __UDA1380_H
  11. #define __UDA1380_H
  12. struct uda1380_platform_data {
  13. int gpio_power;
  14. int gpio_reset;
  15. int dac_clk;
  16. #define UDA1380_DAC_CLK_SYSCLK 0
  17. #define UDA1380_DAC_CLK_WSPLL 1
  18. };
  19. #endif /* __UDA1380_H */