Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 3 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Universal interface for Audio Codec '97 |
| 5 | * |
| 6 | * For more details look to AC '97 component specification revision 2.2 |
| 7 | * by Intel Corporation (http://developer.intel.com). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
Takashi Iwai | ac51902 | 2007-02-22 12:58:27 +0100 | [diff] [blame] | 10 | void snd_ac97_get_name(struct snd_ac97 *ac97, unsigned int id, char *name, |
| 11 | int modem); |
Takashi Iwai | ee42381 | 2005-11-17 14:21:36 +0100 | [diff] [blame] | 12 | int snd_ac97_update_bits_nolock(struct snd_ac97 *ac97, unsigned short reg, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | unsigned short mask, unsigned short value); |
| 14 | |
| 15 | /* ac97_proc.c */ |
Takashi Iwai | f68ce62 | 2015-05-29 07:52:43 +0200 | [diff] [blame] | 16 | #ifdef CONFIG_SND_PROC_FS |
Takashi Iwai | ee42381 | 2005-11-17 14:21:36 +0100 | [diff] [blame] | 17 | void snd_ac97_bus_proc_init(struct snd_ac97_bus * ac97); |
| 18 | void snd_ac97_bus_proc_done(struct snd_ac97_bus * ac97); |
| 19 | void snd_ac97_proc_init(struct snd_ac97 * ac97); |
| 20 | void snd_ac97_proc_done(struct snd_ac97 * ac97); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #else |
| 22 | #define snd_ac97_bus_proc_init(ac97_bus_t) do { } while (0) |
| 23 | #define snd_ac97_bus_proc_done(ac97_bus_t) do { } while (0) |
| 24 | #define snd_ac97_proc_init(ac97_t) do { } while (0) |
| 25 | #define snd_ac97_proc_done(ac97_t) do { } while (0) |
| 26 | #endif |