diff options
author | Simon Glass <sjg@chromium.org> | 2019-02-16 20:24:59 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-02-20 15:27:10 +0800 |
commit | 6a27e540de2c5ff580af99b6b093ce00f495466e (patch) | |
tree | 52d2b3187c4c04cac499147999d4d49d652af1ba /drivers/sound/Makefile | |
parent | 79a5be820d9b187a1d8617d6a1cb65392448322d (diff) |
sound: Add a driver for the i8254 beep
Add a sound driver which can output simple beeps using this legacy timer.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/sound/Makefile')
-rw-r--r-- | drivers/sound/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/sound/Makefile b/drivers/sound/Makefile index 771c116516..2a6fd7420c 100644 --- a/drivers/sound/Makefile +++ b/drivers/sound/Makefile @@ -16,4 +16,5 @@ obj-$(CONFIG_SOUND_MAX98088) += max98088.o maxim_codec.o obj-$(CONFIG_SOUND_MAX98090) += max98090.o maxim_codec.o obj-$(CONFIG_SOUND_MAX98095) += max98095.o maxim_codec.o obj-$(CONFIG_SOUND_INTEL_HDA) += hda_codec.o +obj-$(CONFIG_SOUND_I8254) += i8254_beep.o obj-$(CONFIG_SOUND_IVYBRIDGE) += ivybridge_sound.o |