diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-08-04 18:06:59 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-08-18 13:15:34 +0200 |
commit | dfe650be6f79fc69021a9b7a559d5aca1e2ef359 (patch) | |
tree | 8d3a6e9f2111c56bf93205f0224a2e415d14027a /drivers/accessibility/speakup/Makefile | |
parent | speakup: Fix wait_for_xmitr for ttyio case (diff) | |
download | linux-dfe650be6f79fc69021a9b7a559d5aca1e2ef359.tar.xz linux-dfe650be6f79fc69021a9b7a559d5aca1e2ef359.zip |
speakup: only build serialio when ISA is enabled
Drivers using serialio were already made available in Kconfig only under
the ISA condition.
Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Link: https://lore.kernel.org/r/20200804160659.7y76sdseow43lfms@function
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/accessibility/speakup/Makefile')
-rw-r--r-- | drivers/accessibility/speakup/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/accessibility/speakup/Makefile b/drivers/accessibility/speakup/Makefile index 5befb4933b85..6e4bfac8af65 100644 --- a/drivers/accessibility/speakup/Makefile +++ b/drivers/accessibility/speakup/Makefile @@ -25,8 +25,8 @@ speakup-y := \ keyhelp.o \ kobjects.o \ selection.o \ - serialio.o \ spk_ttyio.o \ synth.o \ thread.o \ varhandlers.o +speakup-$(CONFIG_SPEAKUP_SERIALIO) += serialio.o |