cs4270.h 804 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Cirrus Logic CS4270 ALSA SoC Codec Driver
  3. *
  4. * Author: Timur Tabi <timur@freescale.com>
  5. *
  6. * Copyright 2007 Freescale Semiconductor, Inc. This file is licensed under
  7. * the terms of the GNU General Public License version 2. This program
  8. * is licensed "as is" without any warranty of any kind, whether express
  9. * or implied.
  10. */
  11. #ifndef _CS4270_H
  12. #define _CS4270_H
  13. /*
  14. * The ASoC codec DAI structure for the CS4270. Assign this structure to
  15. * the .codec_dai field of your machine driver's snd_soc_dai_link structure.
  16. */
  17. extern struct snd_soc_dai cs4270_dai;
  18. /*
  19. * The ASoC codec device structure for the CS4270. Assign this structure
  20. * to the .codec_dev field of your machine driver's snd_soc_device
  21. * structure.
  22. */
  23. extern struct snd_soc_codec_device soc_codec_device_cs4270;
  24. #endif