mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
472d546054
'bool' is defined in random places. This patch consolidates them into a single header file include/linux/types.h, using stdbool.h introduced in C99. All other #define, typedef and enum are removed. They are all consistent with true = 1, false = 0. Replace FALSE, False with false. Replace TRUE, True with true. Skip *.py, *.php, lib/* files. Signed-off-by: York Sun <yorksun@freescale.com>
22 lines
765 B
C
22 lines
765 B
C
#include <video_logo.h>
|
|
#define write_dest_byte(val) {*dest++=val;}
|
|
#define BLACK (0x01800180) /* black pixel pattern */
|
|
#define BLUE (0x296E29F0) /* blue pixel pattern */
|
|
#define RED (0x51F0515A) /* red pixel pattern */
|
|
#define MAGENTA (0x6ADE6ACA) /* magenta pixel pattern */
|
|
#define GREEN (0x91229136) /* green pixel pattern */
|
|
#define CYAN (0xAA10AAA6) /* cyan pixel pattern */
|
|
#define YELLOW (0xD292D210) /* yellow pixel pattern */
|
|
#define WHITE (0xFE80FE80) /* white pixel pattern */
|
|
|
|
typedef struct {
|
|
unsigned int sav;
|
|
unsigned int eav;
|
|
} system_code_type;
|
|
|
|
const system_code_type system_code_map[] = {
|
|
{ 0xFF000080, 0xFF00009D },
|
|
{ 0xFF0000AB, 0xFF0000B6 },
|
|
{ 0xFF0000C7, 0xFF0000DA },
|
|
{ 0xFF0000EC, 0xFF0000F1 },
|
|
};
|