1 /* 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 2026 The FreeBSD Foundation 5 */ 6 7 #ifndef _LINUXKPI_LINUX_LINUX_LOGO_H_ 8 #define _LINUXKPI_LINUX_LINUX_LOGO_H_ 9 10 struct linux_logo { 11 int type; 12 unsigned int width; 13 unsigned int height; 14 unsigned int clutsize; 15 const unsigned char *clut; 16 const unsigned char *data; 17 }; 18 19 #endif /* _LINUXKPI_LINUX_LINUX_LOGO_H_ */ 20