From 25802124fb64a949971a89dd2ef34b749d949494 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Tue, 29 Mar 2016 12:17:29 +0200 Subject: [PATCH] Fix in ILI9481 driver code --- drivers/gdisp/ILI9481/gdisp_lld_ILI9481.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gdisp/ILI9481/gdisp_lld_ILI9481.c b/drivers/gdisp/ILI9481/gdisp_lld_ILI9481.c index bd637f0e..0f8b6c4a 100644 --- a/drivers/gdisp/ILI9481/gdisp_lld_ILI9481.c +++ b/drivers/gdisp/ILI9481/gdisp_lld_ILI9481.c @@ -248,7 +248,7 @@ LLDSPEC bool_t gdisp_lld_init(GDisplay *g) { write_reg(g, 0x0010, 0x0000); /* leave sleep mode */ release_bus(g); if (g->g.Powermode != powerSleep) - gdisp_lld_init(); + gdisp_lld_init(g); break; case powerSleep: acquire_bus(g);