led_display: remove unused DISPLAY_MARK define
authorIlya Yanok <yanok@emcraft.com>
Thu, 21 Oct 2010 15:20:11 +0000 (17:20 +0200)
committerWolfgang Denk <wd@denx.de>
Thu, 21 Oct 2010 20:25:04 +0000 (22:25 +0200)
DISPLAY_MARK subcommand of display_set() is not used anywhere so
we can remove it safely.

Signed-off-by: Ilya Yanok <yanok@emcraft.com>
doc/README.LED_display
include/led-display.h

index 521746e..19977ea 100644 (file)
@@ -14,7 +14,6 @@ This function should control the state of the LED display. Argument is
 an ORed combination of the following values:
  DISPLAY_CLEAR -- clear the display
  DISPLAY_HOME  -- set the position to the beginning of display
- DISPLAY_MARK  -- enable mark (decimal point), if implemented
 
 int display_putc(char c);
 
index 41c3744..eaa0f40 100644 (file)
@@ -29,7 +29,6 @@
 /* Display Commands */
 #define DISPLAY_CLEAR  0x1 /* Clear the display */
 #define DISPLAY_HOME   0x2 /* Set cursor at home position */
-#define DISPLAY_MARK   0x4 /* Enable the decimal point led, if implemented */
 
 void display_set(int cmd);
 int display_putc(char c);