Commit e03e4b7312f0da424550e6b06f1964332aac1c09

Authored by Ilya Yanok
Committed by Wolfgang Denk
1 parent 8f54dd4f13

led_display: remove unused DISPLAY_MARK define

DISPLAY_MARK subcommand of display_set() is not used anywhere so
we can remove it safely.

Signed-off-by: Ilya Yanok <yanok@emcraft.com>

Showing 2 changed files with 0 additions and 2 deletions Side-by-side Diff

doc/README.LED_display
... ... @@ -14,7 +14,6 @@
14 14 an ORed combination of the following values:
15 15 DISPLAY_CLEAR -- clear the display
16 16 DISPLAY_HOME -- set the position to the beginning of display
17   - DISPLAY_MARK -- enable mark (decimal point), if implemented
18 17  
19 18 int display_putc(char c);
20 19  
include/led-display.h
... ... @@ -29,7 +29,6 @@
29 29 /* Display Commands */
30 30 #define DISPLAY_CLEAR 0x1 /* Clear the display */
31 31 #define DISPLAY_HOME 0x2 /* Set cursor at home position */
32   -#define DISPLAY_MARK 0x4 /* Enable the decimal point led, if implemented */
33 32  
34 33 void display_set(int cmd);
35 34 int display_putc(char c);