ALSA: ac97: add an ac97 bus
authorRobert Jarzmik <robert.jarzmik@free.fr>
Sat, 2 Sep 2017 19:54:04 +0000 (21:54 +0200)
committerMark Brown <broonie@kernel.org>
Mon, 4 Sep 2017 17:24:56 +0000 (18:24 +0100)
commit74426fbff66eea8e8d1f42c8238c268d1e63a832
tree98b6d36b8fc9f8059cbbb2114ce592dab5a94be7
parent8e4f7d9b8c652b4eb3ceb790e1e9fe433f9e3b58
ALSA: ac97: add an ac97 bus

AC97 is a bus for sound usage. It enables for a AC97 AC-Link to link one
controller to 0 to 4 AC97 codecs.

The goal of this new implementation is to implement a device/driver
model for AC97, with an automatic scan of the bus and automatic
discovery of AC97 codec devices.

Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
Reviewed-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
include/sound/ac97/codec.h [new file with mode: 0644]
include/sound/ac97/compat.h [new file with mode: 0644]
include/sound/ac97/controller.h [new file with mode: 0644]
sound/ac97/Kconfig [new file with mode: 0644]
sound/ac97/Makefile [new file with mode: 0644]
sound/ac97/ac97_core.h [new file with mode: 0644]
sound/ac97/bus.c [new file with mode: 0644]
sound/ac97/codec.c [new file with mode: 0644]
sound/ac97/snd_ac97_compat.c [new file with mode: 0644]