diff options
author | Simon Glass <sjg@chromium.org> | 2015-04-14 21:03:31 -0600 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2015-05-13 09:24:09 -0700 |
commit | ec022efb8658cce75699afc3ce6ee8b2d9d0c273 (patch) | |
tree | ce8a7183eb7c9631084619a4d2cae0924d07a846 | |
parent | ffc7899123d6cb655a83b01bca7bc7e7ce84d695 (diff) | |
download | u-boot-imx-ec022efb8658cce75699afc3ce6ee8b2d9d0c273.zip u-boot-imx-ec022efb8658cce75699afc3ce6ee8b2d9d0c273.tar.gz u-boot-imx-ec022efb8658cce75699afc3ce6ee8b2d9d0c273.tar.bz2 |
tegra: config: Use CONFIG_LCD to detect LCD presence
Instead of CONFIG_VIDEO_TEGRA, use CONFIG_LCD to determine whether an LCD
is present. Tegra124 uses a different driver.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
-rw-r--r-- | include/configs/tegra-common-post.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/tegra-common-post.h b/include/configs/tegra-common-post.h index c3ad8be..46a155d 100644 --- a/include/configs/tegra-common-post.h +++ b/include/configs/tegra-common-post.h @@ -34,7 +34,7 @@ #define STDIN_KBD_USB "" #endif -#ifdef CONFIG_VIDEO_TEGRA +#ifdef CONFIG_LCD #define STDOUT_LCD ",lcd" #else #define STDOUT_LCD "" |