^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 1) /* SPDX-License-Identifier: GPL-2.0-or-later */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 3) * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 4) * Universal interface for Audio Codec '97
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 5) *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 6) * For more details look to AC '97 component specification revision 2.2
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 7) * by Intel Corporation (http://developer.intel.com).
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 8) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 9)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) void snd_ac97_get_name(struct snd_ac97 *ac97, unsigned int id, char *name,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) int modem);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) int snd_ac97_update_bits_nolock(struct snd_ac97 *ac97, unsigned short reg,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) unsigned short mask, unsigned short value);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) /* ac97_proc.c */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) #ifdef CONFIG_SND_PROC_FS
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) void snd_ac97_bus_proc_init(struct snd_ac97_bus * ac97);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) void snd_ac97_bus_proc_done(struct snd_ac97_bus * ac97);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) void snd_ac97_proc_init(struct snd_ac97 * ac97);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) void snd_ac97_proc_done(struct snd_ac97 * ac97);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) #else
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) #define snd_ac97_bus_proc_init(ac97_bus_t) do { } while (0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) #define snd_ac97_bus_proc_done(ac97_bus_t) do { } while (0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) #define snd_ac97_proc_init(ac97_t) do { } while (0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) #define snd_ac97_proc_done(ac97_t) do { } while (0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) #endif