aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gdisp/Fb24bpp/gdisp_lld_fb24bpp.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gdisp/Fb24bpp/gdisp_lld_fb24bpp.c')
-rw-r--r--drivers/gdisp/Fb24bpp/gdisp_lld_fb24bpp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gdisp/Fb24bpp/gdisp_lld_fb24bpp.c b/drivers/gdisp/Fb24bpp/gdisp_lld_fb24bpp.c
index 4d981ce4..61f7b500 100644
--- a/drivers/gdisp/Fb24bpp/gdisp_lld_fb24bpp.c
+++ b/drivers/gdisp/Fb24bpp/gdisp_lld_fb24bpp.c
@@ -39,7 +39,7 @@ typedef struct fbPriv {
/* Driver exported functions. */
/*===========================================================================*/
-LLDSPEC bool_t gdisp_lld_init(GDisplay *g) {
+LLDSPEC gBool gdisp_lld_init(GDisplay *g) {
// Initialize the private structure
if (!(g->priv = gfxAlloc(sizeof(fbPriv))))
@@ -53,7 +53,7 @@ LLDSPEC bool_t gdisp_lld_init(GDisplay *g) {
g->board = 0; // preinitialize
board_init(g, &((fbPriv *)g->priv)->fbi);
- return TRUE;
+ return gTrue;
}
#if GDISP_HARDWARE_FLUSH