Skip to content

Commit 7f60543

Browse files
author
NiklasWan
committed
Added virtual ALSA AVB driver
1 parent b533d1d commit 7f60543

File tree

13 files changed

+4489
-1
lines changed

13 files changed

+4489
-1
lines changed

sound/drivers/Kconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# SPDX-License-Identifier: GPL-2.0-only
2+
config SND_AVB
3+
tristate "Generic AVB driver"
4+
select SND_PCM
5+
help
6+
Say 'Y' or 'M' to include support for the PCM AVB device.
7+
28
config SND_MPU401_UART
39
tristate
410
select SND_RAWMIDI

sound/drivers/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ obj-$(CONFIG_SND_MTS64) += snd-mts64.o
2323
obj-$(CONFIG_SND_PORTMAN2X4) += snd-portman2x4.o
2424
obj-$(CONFIG_SND_ML403_AC97CR) += snd-ml403-ac97cr.o
2525

26-
obj-$(CONFIG_SND) += opl3/ opl4/ mpu401/ vx/ pcsp/
26+
obj-$(CONFIG_SND) += avb/ opl3/ opl4/ mpu401/ vx/ pcsp/

sound/drivers/avb/Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# SPDX-License-Identifier: GPL-2.0
2+
#
3+
# Makefile for ALSA
4+
# Copyright (c) 2001 by Jaroslav Kysela <perex@perex.cz>
5+
#
6+
7+
snd-avb-objs := avb_util.o msrp.o avdecc.o avtp.o avb.o
8+
9+
obj-$(CONFIG_SND_AVB) += snd-avb.o

0 commit comments

Comments
 (0)