display: ssd1673: drop unused constants

Drop constants that are unused and hardcoded to the display dimensions.

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
Aurelien Jarno 2019-01-31 22:13:37 +01:00 committed by Anas Nashif
commit 0a0c5adde5

View file

@ -73,8 +73,6 @@
#define SSD1673_VAL_DUMMY_LINE 0x1a
#define SSD1673_VAL_GATE_LWIDTH 0x08
/** Maximum resolution in the X direction */
#define SSD1673_RAM_XRES 152
/** Maximum resolution in the Y direction */
#define SSD1673_RAM_YRES 250
@ -82,7 +80,4 @@
#define SSD1673_RESET_DELAY 1
#define SSD1673_BUSY_DELAY 1
/** Size of each RAM in octets */
#define SSD1673_RAM_SIZE (SSD1673_RAM_XRES * SSD1673_RAM_YRES / 8)
#endif /* __SSD1673_REGS_H__ */