diff options
author | Wenyou Yang | 2017-09-13 14:58:47 +0800 |
---|---|---|
committer | Tom Rini | 2017-09-14 16:02:43 -0400 |
commit | 82e0646af782b854965b2cb6d49d462dcf9c7694 (patch) | |
tree | a78d5d1a3576330acf68ab5ea29b54dd9229e3c2 /arch/arm/mach-at91 | |
parent | d330e04d9d427a26381b59f40875af17f4c288a2 (diff) |
atmel: common: Add function to display via DM_VIDEO's API
Add a function to display the company's logo and board information
via the API from DM_VIDEO. This function can be shared by other
atmel boards, so locate it in board/atmel/common folder.
Signed-off-by: Wenyou Yang <wenyou.yang@microchip.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm/mach-at91')
-rw-r--r-- | arch/arm/mach-at91/include/mach/at91_common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/include/mach/at91_common.h b/arch/arm/mach-at91/include/mach/at91_common.h index a95fe416103..5416eb455d6 100644 --- a/arch/arm/mach-at91/include/mach/at91_common.h +++ b/arch/arm/mach-at91/include/mach/at91_common.h @@ -37,5 +37,6 @@ void redirect_int_from_saic_to_aic(void); void configure_2nd_sram_as_l2_cache(void); int at91_set_ethaddr(int offset); +int at91_video_show_board_info(void); #endif /* AT91_COMMON_H */ |