summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin-Éric Racine <q-funk@iki.fi>2009-09-04 03:51:01 +0300
committerMartin-Éric Racine <q-funk@iki.fi>2009-09-04 03:51:01 +0300
commita17b50b130fe01c058a74f2696a8b97c756acb49 (patch)
tree4021cc8cf05e7bc938eb10ef7298bb4e9cc87bd2
parentafd800dae4f7491baee08509094a30160bb9c849 (diff)
Further explained what the Geode PCI ID is all about as comments.
-rw-r--r--hw/xfree86/common/xf86AutoConfig.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xfree86/common/xf86AutoConfig.c b/hw/xfree86/common/xf86AutoConfig.c
index 0e8b65b2d..468c8b5ab 100644
--- a/hw/xfree86/common/xf86AutoConfig.c
+++ b/hw/xfree86/common/xf86AutoConfig.c
@@ -159,12 +159,12 @@ videoPtrToDriverList(struct pci_device *dev,
/* older Geode products acquired by AMD but still carrying an NSC vendor_id */
case 0x100B:
if (dev->device_id == 0x0030) {
- /* NSC Geode GX2 specifically or... */
+ /* NSC Geode GX2 specifically ... */
driverList[0] = "geode";
/* GX2 support started in NSC and was later forked by AMD for GEODE so we keep it as a backup */
driverList[1] = "nsc";
} else
- /* ... any kind of NSC Geode SC variant */
+ /* ... or any other NSC Geode e.g. SC series */
driverList[0] = "nsc";
break;
/* Cyrix Geode GX1 */