Revision ce65d55f92a67e247f4d799e581cf9fed677871c authored by Vladimir Murzin on 22 September 2020, 11:58:45 UTC, committed by Vinod Koul on 22 September 2020, 14:48:05 UTC
Andy reported that commit 6b41030fdc79 ("dmaengine: dmatest:
Restore default for channel") broke his scripts for the case
where "busy" channel is used for configuration with expectation
that run command would do nothing. Instead, behavior was
(unintentionally) changed to treat such case as under-configuration
and progress with defaults, i.e. run command would start a test
with default setting for channel (which would use all channels).

Restore original behavior with tracking status of channel setter
so we can distinguish between misconfigured and under-configured
cases in run command and act accordingly.

Fixes: 6b41030fdc79 ("dmaengine: dmatest: Restore default for channel")
Reported-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Tested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Vladimir Murzin <vladimir.murzin@arm.com>
Tested-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20200922115847.30100-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
1 parent f4d51df
Raw File
Kconfig
# SPDX-License-Identifier: GPL-2.0-only
menuconfig SND_X86
	bool "X86 sound devices"
	depends on X86
	default y
	help
	  X86 sound devices that don't fall under SoC or PCI categories

if SND_X86

config HDMI_LPE_AUDIO
	tristate "HDMI audio without HDAudio on Intel Atom platforms"
	depends on DRM_I915
	select SND_PCM
	help
	 Choose this option to support HDMI LPE Audio mode

endif	# SND_X86
back to top