From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Warren Date: Mon, 26 Nov 2012 12:00:51 -0700 Subject: [U-Boot] [PATCH 2/2] tegra: enable LCD on PAZ00 In-Reply-To: <90d2bb4745f6305239fe7a270350c5180a914113.1353878614.git.marvin24@gmx.de> References: <188ec76558345094d1c829cf83aff5d792d5b8ef.1353878614.git.marvin24@gmx.de> <90d2bb4745f6305239fe7a270350c5180a914113.1353878614.git.marvin24@gmx.de> Message-ID: <50B3BC63.2050900@wwwdotorg.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 11/25/2012 02:26 PM, Marc Dietrich wrote: > This adds LCD panel descriptions to the device tree of PAZ00 and > enables LCD support in the configuration. > diff --git a/include/configs/paz00.h b/include/configs/paz00.h > +#define CONFIG_BOARD_LATE_INIT What's that for? I don't think any of the other Tegra boards have it. > > /* SD/MMC */ > #define CONFIG_MMC > @@ -71,6 +72,20 @@ > #define CONFIG_CMD_NET > #define CONFIG_CMD_DHCP > > +#undef TEGRA_DEVICE_SETTINGS > +#define TEGRA_DEVICE_SETTINGS \ > + "stdin=serial\0" \ > + "stdout=serial,lcd\0" \ > + "stderr=serial,lcd\0" Why not extend tegra-common-post.h's automatic calculation of TEGRA_DEVICE_SETTINGS to support the lcd case too? Allen Martin's recent change "tegra: move TEGRA_DEVICE_SETTINGS to tegra-common-post.h" should make it easy to do that.