u-boot/lib/at91/at91.c
Tom Rini 467382ca03 lib: Remove <common.h> inclusion from these files
After some header file cleanups to add missing include files, remove
common.h from all files in the lib directory. This primarily means just
dropping the line but in a few cases we need to add in other header
files now.

Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
2023-12-21 08:54:37 -05:00

28 lines
778 B
C

// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (C) 2016 Microchip
* Wenyou.Yang <wenyou.yang@microchip.com>
*/
#include <atmel_lcd.h>
#include "atmel_logo_8bpp.h"
#include "microchip_logo_8bpp.h"
void atmel_logo_info(vidinfo_t *info)
{
info->logo_width = ATMEL_LOGO_8BPP_WIDTH;
info->logo_height = ATMEL_LOGO_8BPP_HEIGHT;
info->logo_x_offset = ATMEL_LOGO_8BPP_X_OFFSET;
info->logo_y_offset = ATMEL_LOGO_8BPP_X_OFFSET;
info->logo_addr = (u_long)atmel_logo_8bpp;
}
void microchip_logo_info(vidinfo_t *info)
{
info->logo_width = MICROCHIP_LOGO_8BPP_WIDTH;
info->logo_height = MICROCHIP_LOGO_8BPP_HEIGHT;
info->logo_x_offset = MICROCHIP_LOGO_8BPP_X_OFFSET;
info->logo_y_offset = MICROCHIP_LOGO_8BPP_X_OFFSET;
info->logo_addr = (u_long)microchip_logo_8bpp;
}