Commit 54b4856f authored by Christian Gromm's avatar Christian Gromm Committed by Greg Kroah-Hartman
Browse files

Staging: most: add MOST driver's aim-sound module



This patch adds the aim-sound module of the MOST driver to the kernel's
driver staging area. This module is part of the MOST driver and handles
user space interaction by means of ALSA devices.

This patch is needed in order to have access to MOST synchronous data
through ALSA devices.

Signed-off-by: default avatarChristian Gromm <christian.gromm@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d4a8ce7f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -17,4 +17,6 @@ source "drivers/staging/most/aim-cdev/Kconfig"

source "drivers/staging/most/aim-network/Kconfig"

source "drivers/staging/most/aim-sound/Kconfig"

endif
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_MOSTCORE)	+= mostcore/
obj-$(CONFIG_AIM_CDEV)	+= aim-cdev/
obj-$(CONFIG_AIM_NETWORK)	+= aim-network/
obj-$(CONFIG_AIM_SOUND)	+= aim-sound/
+12 −0
Original line number Diff line number Diff line
#
# MOST ALSA configuration
#

config AIM_SOUND
	tristate "ALSA AIM"
	depends on SND
	---help---
	  Say Y here if you want to commumicate via ALSA/sound devices.

	  To compile this driver as a module, choose M here: the
	  module will be called aim_sound.
+4 −0
Original line number Diff line number Diff line
obj-$(CONFIG_AIM_SOUND) += aim_sound.o

aim_sound-objs := sound.o
ccflags-y += -Idrivers/staging/most/mostcore/
+758 −0

File added.

Preview size limit exceeded, changes collapsed.