Further explained what the Geode PCI ID is all about as comments.
This commit is contained in:
parent
afd800dae4
commit
a17b50b130
|
@ -159,12 +159,12 @@ videoPtrToDriverList(struct pci_device *dev,
|
||||||
/* older Geode products acquired by AMD but still carrying an NSC vendor_id */
|
/* older Geode products acquired by AMD but still carrying an NSC vendor_id */
|
||||||
case 0x100B:
|
case 0x100B:
|
||||||
if (dev->device_id == 0x0030) {
|
if (dev->device_id == 0x0030) {
|
||||||
/* NSC Geode GX2 specifically or... */
|
/* NSC Geode GX2 specifically ... */
|
||||||
driverList[0] = "geode";
|
driverList[0] = "geode";
|
||||||
/* GX2 support started in NSC and was later forked by AMD for GEODE so we keep it as a backup */
|
/* GX2 support started in NSC and was later forked by AMD for GEODE so we keep it as a backup */
|
||||||
driverList[1] = "nsc";
|
driverList[1] = "nsc";
|
||||||
} else
|
} else
|
||||||
/* ... any kind of NSC Geode SC variant */
|
/* ... or any other NSC Geode e.g. SC series */
|
||||||
driverList[0] = "nsc";
|
driverList[0] = "nsc";
|
||||||
break;
|
break;
|
||||||
/* Cyrix Geode GX1 */
|
/* Cyrix Geode GX1 */
|
||||||
|
|
Loading…
Reference in New Issue