]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/led-display.h
colibri_vf: set fdtfile for distroboot
[thirdparty/u-boot.git] / include / led-display.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
7f0d241d
IY
2/*
3 * (C) Copyright 2005-2010
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
6 * (C) Copyright 2010
7 * Sergei Poselenov, Emcraft Systems, sposelenov@emcraft.com.
7f0d241d
IY
8 */
9#ifndef _led_display_h_
10#define _led_display_h_
11
12/* Display Commands */
13#define DISPLAY_CLEAR 0x1 /* Clear the display */
14#define DISPLAY_HOME 0x2 /* Set cursor at home position */
7f0d241d
IY
15
16void display_set(int cmd);
17int display_putc(char c);
18#endif