aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gdisp/SSD1322/gdisp_lld_SSD1322.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gdisp/SSD1322/gdisp_lld_SSD1322.c')
-rw-r--r--drivers/gdisp/SSD1322/gdisp_lld_SSD1322.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gdisp/SSD1322/gdisp_lld_SSD1322.c b/drivers/gdisp/SSD1322/gdisp_lld_SSD1322.c
index 5f54cc47..054c1201 100644
--- a/drivers/gdisp/SSD1322/gdisp_lld_SSD1322.c
+++ b/drivers/gdisp/SSD1322/gdisp_lld_SSD1322.c
@@ -47,7 +47,7 @@
/*===========================================================================*/
// Some common routines and macros
-#define RAM(g) ((uint8_t *)g->priv)
+#define RAM(g) ((gU8 *)g->priv)
// Some common routines and macros
#define xyaddr(x, y) ((x) + (y)*SSD1322_ROW_WIDTH)
@@ -157,7 +157,7 @@ LLDSPEC gBool gdisp_lld_init(GDisplay *g) {
#if GDISP_HARDWARE_FLUSH
LLDSPEC void gdisp_lld_flush(GDisplay *g) {
- uint8_t * ram;
+ gU8 * ram;
unsigned cols,rows;
// Don't flush if we don't need it.
@@ -190,7 +190,7 @@ LLDSPEC gBool gdisp_lld_init(GDisplay *g) {
#if GDISP_HARDWARE_DRAWPIXEL
LLDSPEC void gdisp_lld_draw_pixel(GDisplay *g) {
gCoord x, y;
- uint8_t *ram;
+ gU8 *ram;
switch(g->g.Orientation) {
default: