diff options
author | Simon Glass <sjg@chromium.org> | 2018-12-10 10:37:31 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-12-13 16:32:49 -0700 |
commit | 2a0495724133058ab7c6aa1e8dc9433344d45231 (patch) | |
tree | 06bf68abd6ae4702384419ffc3472b01de3f010d /arch/Kconfig | |
parent | 51b06dc40bce0768c77a23fcfc4a5ed5537aa2bd (diff) | |
download | u-boot-2a0495724133058ab7c6aa1e8dc9433344d45231.tar.gz |
dm: sound: Create an option to use driver model for sound
The U-Boot sound system provides basic support for beeping. At present it
does not use driver model, but it needs to be converted. Add an option to
enable driver model for sound. For now it is not connected to anything.
Future work will add drivers which use this option. It will then be
removed once everything is converted.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/Kconfig')
-rw-r--r-- | arch/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index 947070fdd3..35e2712fce 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -116,6 +116,7 @@ config SANDBOX imply VIRTIO_SANDBOX imply VIRTIO_BLK imply VIRTIO_NET + imply DM_SOUND config SH bool "SuperH architecture" |