diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-10-23 22:26:09 +0900 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-10-23 21:43:09 -0600 |
commit | da333ae73cddf12e8f71a847e42a6571f9435d7c (patch) | |
tree | 1693f8347a90ac3e57393933e5852d7996462bb4 /drivers/serial/Kconfig | |
parent | eea5a4cc1baa1b7f2697c4385aeae881430bff24 (diff) | |
download | u-boot-imx-da333ae73cddf12e8f71a847e42a6571f9435d7c.zip u-boot-imx-da333ae73cddf12e8f71a847e42a6571f9435d7c.tar.gz u-boot-imx-da333ae73cddf12e8f71a847e42a6571f9435d7c.tar.bz2 |
dm: add entries to Kconfig
Create entries of CONFIG_DM, CONFIG_DM_SERIAL, CONFIG_DM_GPIO
and CONFIG_DM_SPI.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/serial/Kconfig')
-rw-r--r-- | drivers/serial/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index e69de29..6a392ba 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig @@ -0,0 +1,6 @@ +config DM_SERIAL + bool "Enable Driver Model for serial drivers" + depends on DM + help + If you want to use driver model for serial drivers, say Y. + To use legacy serial drivers, say N. |