diff options
| author | Tom Rini <trini@ti.com> | 2012-08-13 11:37:56 -0700 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2012-09-27 09:48:38 -0700 | 
| commit | 861a86f46047c22af505d7fb27b2c68df0f54323 (patch) | |
| tree | 03aa3ab7e05419b6fc2e8c59095781f3c956504f /arch/arm/cpu/armv7/omap-common/hwinit-common.c | |
| parent | 0da113e9fd353ce08dda0ac9d79694b673174bda (diff) | |
| download | olio-uboot-2014.01-861a86f46047c22af505d7fb27b2c68df0f54323.tar.xz olio-uboot-2014.01-861a86f46047c22af505d7fb27b2c68df0f54323.zip | |
omap-common: SPL: Add CONFIG_SPL_DISPLAY_PRINT / spl_display_print()
Only omap4/5 currently have a meaningful set of display text and overo
had been adding a function to display nothing.  Change how this works to
be opt-in and only turned on for omap4/5 now.
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/cpu/armv7/omap-common/hwinit-common.c')
| -rw-r--r-- | arch/arm/cpu/armv7/omap-common/hwinit-common.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/arch/arm/cpu/armv7/omap-common/hwinit-common.c b/arch/arm/cpu/armv7/omap-common/hwinit-common.c index 459ebb55e..4d7ef5c52 100644 --- a/arch/arm/cpu/armv7/omap-common/hwinit-common.c +++ b/arch/arm/cpu/armv7/omap-common/hwinit-common.c @@ -92,6 +92,11 @@ static void init_boot_params(void)  {  	boot_params_ptr = (u32 *) &boot_params;  } + +void spl_display_print(void) +{ +	omap_rev_string(); +}  #endif  /* |