diff options
author | Eugen Hristev <eugen.hristev@microchip.com> | 2019-08-28 08:34:03 +0000 |
---|---|---|
committer | Eugen Hristev <eugen.hristev@microchip.com> | 2019-10-08 09:16:11 +0300 |
commit | cd8e876aa964a0e7e9f0fc029530440fe46a1235 (patch) | |
tree | ba51de97b04d2e6707b83b80ed7736f6376719fd /board/atmel | |
parent | 4a500e4337b6dae2e57a959544e623cf5f74d31e (diff) |
board: atmel: common: remove year from print message
Remove 2017 from being printed at boot video console.
This is outdated.
To avoid this situation, remove the year completely.
Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
Diffstat (limited to 'board/atmel')
-rw-r--r-- | board/atmel/common/video_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/atmel/common/video_display.c b/board/atmel/common/video_display.c index c7d3f8addc..cc051d2e0c 100644 --- a/board/atmel/common/video_display.c +++ b/board/atmel/common/video_display.c @@ -23,7 +23,7 @@ int at91_video_show_board_info(void) int i; u32 len = 0; char buf[255]; - char *corp = "2017 Microchip Technology Inc.\n"; + char *corp = "Microchip Technology Inc.\n"; char temp[32]; struct udevice *dev, *con; const char *s; |