diff options
Diffstat (limited to 'src/gdisp')
-rw-r--r-- | src/gdisp/gdisp.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gdisp/gdisp.c b/src/gdisp/gdisp.c index cebed1ef..0b69bfa0 100644 --- a/src/gdisp/gdisp.c +++ b/src/gdisp/gdisp.c @@ -554,26 +554,26 @@ static void line_clip(GDisplay *g) { /* Driver exported functions. */ /*===========================================================================*/ -typedef const GDISPVMT const GDISPVMTLIST[]; - void _gdispInit(void) { // GDISP_DRIVER_LIST is defined - create each driver instance #if defined(GDISP_DRIVER_LIST) { unsigned i; + typedef const GDISPVMT const GDISPVMTLIST[1]; - extern GDISPVMTLIST GDISP_DRIVER_LIST; - static GDISPVMTLIST dclist[] = {GDISP_DRIVER_LIST}; + extern GDISPVMTLIST GDISP_DRIVER_LIST; + static const GDISPVMT * const dclist[] = {GDISP_DRIVER_LIST}; - for(i = 0; i < sizeof(dclist)/sizeof(dclist[0]); i++) + for(i = 0; i < sizeof(dclist)/sizeof(dclist[0]); i++) { if (!(dclist[i]->d.flags & GDISP_VFLG_DYNAMICONLY)) gdriverRegister(&dclist[i]->d, 0); + } } #elif GDISP_TOTAL_DISPLAYS > 1 { unsigned i; - extern GDISPVMTLIST GDISPVMT_OnlyOne; + extern const GDISPVMT const GDISPVMT_OnlyOne[1]; if (!(GDISPVMT_OnlyOne->d.flags & GDISP_VFLG_DYNAMICONLY)) { for(i = 0; i < GDISP_TOTAL_DISPLAYS; i++) @@ -582,7 +582,7 @@ void _gdispInit(void) } #else { - extern GDISPVMTLIST GDISPVMT_OnlyOne; + extern const GDISPVMT const GDISPVMT_OnlyOne[1]; if (!(GDISPVMT_OnlyOne->d.flags & GDISP_VFLG_DYNAMICONLY)) gdriverRegister(&GDISPVMT_OnlyOne->d, 0); |