Index: branches/meklort/i386/modules/GraphicsEnabler/gma.c =================================================================== --- branches/meklort/i386/modules/GraphicsEnabler/gma.c (revision 733) +++ branches/meklort/i386/modules/GraphicsEnabler/gma.c (revision 734) @@ -53,7 +53,8 @@ { 0x8086A012, "Mobile GMA3150" }, { 0x80862772, "Desktop GMA950" }, { 0x80862776, "Desktop GMA950" }, - { 0x8086A001, "Desktop GMA3150" }, +// { 0x8086A001, "Desktop GMA3150" }, + { 0x8086A001, "Mobile GMA3150" }, { 0x8086A002, "Desktop GMA3150" }, { 0x80862A02, "GMAX3100" }, { 0x80862A03, "GMAX3100" }, Index: branches/meklort/i386/modules/GraphicsEnabler/nvidia.c =================================================================== --- branches/meklort/i386/modules/GraphicsEnabler/nvidia.c (revision 733) +++ branches/meklort/i386/modules/GraphicsEnabler/nvidia.c (revision 734) @@ -354,6 +354,7 @@ { 0x10DE0A65, "GeForce 210" }, { 0x10DE0A66, "GeForce 310" }, { 0x10DE0A74, "GeForce G210M" }, + { 0x10DE0A76, "ION GT218" }, { 0x10DE0A78, "Quadro FX 380 LP" }, { 0x10DE0CA3, "GeForce GT 240" }, { 0x10DE0CA8, "GeForce GTS 260M" }, Index: branches/meklort/i386/modules/Resolution/915resolution.c =================================================================== --- branches/meklort/i386/modules/Resolution/915resolution.c (revision 733) +++ branches/meklort/i386/modules/Resolution/915resolution.c (revision 734) @@ -29,7 +29,7 @@ { vbios_map * map; - map = open_vbios(CT_UNKWN); + map = open_vbios(CT_UNKNOWN); if(map) { unlock_vbios(map); @@ -184,11 +184,14 @@ { //printf("Unknown chipset 0x%llX, please email id to meklort@gmail.com", id); //getc(); - //type = CT_UNKWN_INTEL; - type = CT_UNKWN; + type = CT_UNKNOWN_INTEL; + //type = CT_UNKNOWN; } - type = CT_UNKWN; + else + { + type = CT_UNKNOWN; + } break; } return type; @@ -256,18 +259,18 @@ * Determine chipset */ - if (forced_chipset == CT_UNKWN) + if (forced_chipset == CT_UNKNOWN) { map->chipset_id = get_chipset_id(); map->chipset = get_chipset(map->chipset_id); } - else if (forced_chipset != CT_UNKWN) + else if (forced_chipset != CT_UNKNOWN) { map->chipset = forced_chipset; } - if (map->chipset == CT_UNKWN) + if (map->chipset == CT_UNKNOWN) { //verbose("Unknown chipset type.\n"); //verbose("915resolution only works with Intel 800/900 series graphic chipsets.\n"); @@ -371,7 +374,7 @@ * check if we have Intel */ - /*if (map->chipset == CT_UNKWN && memmem(map->bios_ptr, VBIOS_SIZE, INTEL_SIGNATURE, strlen(INTEL_SIGNATURE))) { + /*if (map->chipset == CT_UNKNOWN && memmem(map->bios_ptr, VBIOS_SIZE, INTEL_SIGNATURE, strlen(INTEL_SIGNATURE))) { printf( "Intel chipset detected. However, 915resolution was unable to determine the chipset type.\n"); printf("Chipset Id: %x\n", map->chipset_id); @@ -468,7 +471,7 @@ map->unlocked = TRUE; switch (map->chipset) { - case CT_UNKWN: + case CT_UNKNOWN: break; case CT_830: case CT_855GM: @@ -502,7 +505,7 @@ case CT_G31: case CT_500: case CT_3150: - case CT_UNKWN_INTEL: // Assume newer intel chipset is the same as before + case CT_UNKNOWN_INTEL: // Assume newer intel chipset is the same as before outl(CONFIG_MECH_ONE_ADDR, 0x80000090); map->b1 = inb(CONFIG_MECH_ONE_DATA + 1); map->b2 = inb(CONFIG_MECH_ONE_DATA + 2); @@ -527,7 +530,7 @@ switch (map->chipset) { - case CT_UNKWN: + case CT_UNKNOWN: break; case CT_830: case CT_855GM: @@ -558,7 +561,7 @@ case CT_G31: case CT_500: case CT_3150: - case CT_UNKWN_INTEL: + case CT_UNKNOWN_INTEL: outl(CONFIG_MECH_ONE_ADDR, 0x80000090); outb(CONFIG_MECH_ONE_DATA + 1, map->b1); outb(CONFIG_MECH_ONE_DATA + 2, map->b2); @@ -849,7 +852,7 @@ }*/ break; } - case BT_UNKWN: + case BT_UNKNOWN: { break; } Index: branches/meklort/i386/modules/Resolution/915resolution.h =================================================================== --- branches/meklort/i386/modules/Resolution/915resolution.h (revision 733) +++ branches/meklort/i386/modules/Resolution/915resolution.h (revision 734) @@ -105,7 +105,7 @@ typedef enum { - CT_UNKWN, CT_UNKWN_INTEL, CT_830, CT_845G, CT_855GM, CT_865G, + CT_UNKNOWN, CT_UNKNOWN_INTEL, CT_830, CT_845G, CT_855GM, CT_865G, CT_915G, CT_915GM, CT_945G, CT_945GM, CT_945GME, CT_946GZ, CT_955X, CT_G965, CT_Q965, CT_965GM, CT_975X, CT_P35, CT_X48, CT_B43, CT_Q45, CT_P45, @@ -115,7 +115,7 @@ typedef enum { - BT_UNKWN, BT_1, BT_2, BT_3, BT_ATI_1, BT_ATI_2, BT_NVDA + BT_UNKNOWN, BT_1, BT_2, BT_3, BT_ATI_1, BT_ATI_2, BT_NVDA } bios_type;