]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
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 521746e12912f56b8625ab4b6d3450bc8971d4d8..19977ea7e0d1aba27e961a82d090f3ba533698fe 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 41c37443452bc2ffdad092c06870b51a875e3850..eaa0f406406d5cbe0e8d6d004320432c866b0424 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);