From: Kevin O'Connor Date: Sat, 16 May 2009 18:55:01 +0000 (-0400) Subject: VGA: Minor - use "_g" suffix for global pointers. X-Git-Tag: rel-0.4.1~71 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=4f79274123c55d5d9ffea3da099cf241335a75d2;p=seabios.git VGA: Minor - use "_g" suffix for global pointers. --- diff --git a/vgasrc/clext.c b/vgasrc/clext.c index 32584ee..1fb4df5 100644 --- a/vgasrc/clext.c +++ b/vgasrc/clext.c @@ -292,12 +292,12 @@ static struct cirrus_mode_s cirrus_modes[] VAR16 = { static struct cirrus_mode_s * cirrus_get_modeentry(u8 mode) { - struct cirrus_mode_s *table = cirrus_modes; - while (table < &cirrus_modes[ARRAY_SIZE(cirrus_modes)]) { - u16 tmode = GET_GLOBAL(table->mode); + struct cirrus_mode_s *table_g = cirrus_modes; + while (table_g < &cirrus_modes[ARRAY_SIZE(cirrus_modes)]) { + u16 tmode = GET_GLOBAL(table_g->mode); if (tmode == mode) - return table; - table++; + return table_g; + table_g++; } return NULL; } @@ -353,13 +353,13 @@ cirrus_set_video_mode(u8 mode) { dprintf(1, "cirrus mode %d\n", mode); SET_BDA(vbe_mode, 0); - struct cirrus_mode_s *table = cirrus_get_modeentry(mode & 0x7f); - if (table) { + struct cirrus_mode_s *table_g = cirrus_get_modeentry(mode & 0x7f); + if (table_g) { //XXX - cirrus_set_video_mode_extended(table); return; } - table = cirrus_get_modeentry(0xfe); - cirrus_switch_mode(table); + table_g = cirrus_get_modeentry(0xfe); + cirrus_switch_mode(table_g); dprintf(1, "cirrus mode switch regular\n"); }