diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-05-21 07:49:58 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-05-28 18:55:08 -0400 |
commit | 005a804d0f3a0f0ace28a097142401ef9778e74c (patch) | |
tree | 59828c9f9ab56c12a88343f56125b325010da075 /include | |
parent | 77934fdedfdd8a87d3b96c45b7bd540be60445d6 (diff) |
cmd: remove unused `display` command
Compiling the display command leads to an error
undefined reference to `display_set'
No implementation of display_set() exists in U-Boot.
Eliminate the `display` command as well as the accompanying files.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/led-display.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/include/led-display.h b/include/led-display.h deleted file mode 100644 index b21f3b0570..0000000000 --- a/include/led-display.h +++ /dev/null @@ -1,18 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0+ */ -/* - * (C) Copyright 2005-2010 - * Wolfgang Denk, DENX Software Engineering, wd@denx.de. - * - * (C) Copyright 2010 - * Sergei Poselenov, Emcraft Systems, sposelenov@emcraft.com. - */ -#ifndef _led_display_h_ -#define _led_display_h_ - -/* Display Commands */ -#define DISPLAY_CLEAR 0x1 /* Clear the display */ -#define DISPLAY_HOME 0x2 /* Set cursor at home position */ - -void display_set(int cmd); -int display_putc(char c); -#endif |