#include <linux/slab.h>
#include <linux/delay.h>
#include <linux/module.h>
#include <sound/core.h>
#include <sound/control.h>
#include <sound/pcm.h>
#include <sound/ak4117.h>
#include <sound/asoundef.h>
Go to the source code of this file.
|
| | MODULE_AUTHOR ("Jaroslav Kysela <[email protected]>") |
| |
| | MODULE_DESCRIPTION ("AK4117 IEC958 (S/PDIF) receiver by Asahi Kasei") |
| |
| | MODULE_LICENSE ("GPL") |
| |
| int | snd_ak4117_create (struct snd_card *card, ak4117_read_t *read, ak4117_write_t *write, const unsigned char pgm[5], void *private_data, struct ak4117 **r_ak4117) |
| |
| void | snd_ak4117_reg_write (struct ak4117 *chip, unsigned char reg, unsigned char mask, unsigned char val) |
| |
| void | snd_ak4117_reinit (struct ak4117 *chip) |
| |
| int | snd_ak4117_build (struct ak4117 *ak4117, struct snd_pcm_substream *cap_substream) |
| |
| int | snd_ak4117_external_rate (struct ak4117 *ak4117) |
| |
| int | snd_ak4117_check_rate_and_errors (struct ak4117 *ak4117, unsigned int flags) |
| |
| | EXPORT_SYMBOL (snd_ak4117_create) |
| |
| | EXPORT_SYMBOL (snd_ak4117_reg_write) |
| |
| | EXPORT_SYMBOL (snd_ak4117_reinit) |
| |
| | EXPORT_SYMBOL (snd_ak4117_build) |
| |
| | EXPORT_SYMBOL (snd_ak4117_external_rate) |
| |
| | EXPORT_SYMBOL (snd_ak4117_check_rate_and_errors) |
| |
| #define AK4117_ADDR 0x00 /* fixed address */ |