diff options
author | Simon Glass <sjg@chromium.org> | 2019-02-16 20:24:56 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-02-20 15:27:09 +0800 |
commit | ecc7973d1c4ba684d2e2750a948f341693c39093 (patch) | |
tree | b389a041ddde309393a569c4fa8f82f80cb20df7 /arch | |
parent | 2ca471379b471dc0d31459974d7cc4b54c824956 (diff) | |
download | u-boot-ecc7973d1c4ba684d2e2750a948f341693c39093.tar.gz |
sandbox: sound: Silence sound for testing
When testing the sound system we don't need the hear the beeps. The
testing works by checking the data that would be emitted. Add a
device-tree property to silence the sound, and enable it for testing.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sandbox/dts/test.dts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts index f014c561bc..d4c708c79e 100644 --- a/arch/sandbox/dts/test.dts +++ b/arch/sandbox/dts/test.dts @@ -389,6 +389,7 @@ i2s: i2s { compatible = "sandbox,i2s"; #sound-dai-cells = <1>; + sandbox,silent; /* Don't emit sounds while testing */ }; misc-test { |